| STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229923 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2598 · P5196 |
![]() | This is the info page for Flash #244555 |
The text has been compressed and saved into a WinRar archive, available through this link. Uncompressed: 691,8 KiB WinRar size: 199,1 KiB |
ActionScript [AS3]
Section 1//BaseScrollPane (fl.containers.BaseScrollPane) package fl.containers { import fl.controls.*; import flash.display.*; import fl.core.*; import flash.events.*; import flash.geom.*; import fl.events.*; public class BaseScrollPane extends UIComponent { protected var defaultLineScrollSize:Number;// = 4 protected var _maxHorizontalScrollPosition:Number;// = 0 protected var vScrollBar:Boolean; protected var disabledOverlay:Shape; protected var hScrollBar:Boolean; protected var availableWidth:Number; protected var _verticalPageScrollSize:Number;// = 0 protected var vOffset:Number;// = 0 protected var _verticalScrollBar:ScrollBar; protected var useFixedHorizontalScrolling:Boolean;// = false protected var contentWidth:Number;// = 0 protected var contentHeight:Number;// = 0 protected var _horizontalPageScrollSize:Number;// = 0 protected var background:DisplayObject; protected var _useBitmpScrolling:Boolean;// = false protected var contentPadding:Number;// = 0 protected var availableHeight:Number; protected var _horizontalScrollBar:ScrollBar; protected var contentScrollRect:Rectangle; protected var _horizontalScrollPolicy:String; protected var _verticalScrollPolicy:String; protected static const SCROLL_BAR_STYLES:Object = {upArrowDisabledSkin:"upArrowDisabledSkin", upArrowDownSkin:"upArrowDownSkin", upArrowOverSkin:"upArrowOverSkin", upArrowUpSkin:"upArrowUpSkin", downArrowDisabledSkin:"downArrowDisabledSkin", downArrowDownSkin:"downArrowDownSkin", downArrowOverSkin:"downArrowOverSkin", downArrowUpSkin:"downArrowUpSkin", thumbDisabledSkin:"thumbDisabledSkin", thumbDownSkin:"thumbDownSkin", thumbOverSkin:"thumbOverSkin", thumbUpSkin:"thumbUpSkin", thumbIcon:"thumbIcon", trackDisabledSkin:"trackDisabledSkin", trackDownSkin:"trackDownSkin", trackOverSkin:"trackOverSkin", trackUpSkin:"trackUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; private static var defaultStyles:Object = {repeatDelay:500, repeatInterval:35, skin:"ScrollPane_upSkin", contentPadding:0, disabledAlpha:0.5}; public function BaseScrollPane(){ contentWidth = 0; contentHeight = 0; contentPadding = 0; vOffset = 0; _maxHorizontalScrollPosition = 0; _horizontalPageScrollSize = 0; _verticalPageScrollSize = 0; defaultLineScrollSize = 4; useFixedHorizontalScrolling = false; _useBitmpScrolling = false; super(); } protected function handleWheel(_arg1:MouseEvent):void{ if (((((!(enabled)) || (!(_verticalScrollBar.visible)))) || ((contentHeight <= availableHeight)))){ return; }; _verticalScrollBar.scrollPosition = (_verticalScrollBar.scrollPosition - (_arg1.delta * verticalLineScrollSize)); setVerticalScrollPosition(_verticalScrollBar.scrollPosition); dispatchEvent(new ScrollEvent(ScrollBarDirection.VERTICAL, _arg1.delta, horizontalScrollPosition)); } public function get verticalScrollPosition():Number{ return (_verticalScrollBar.scrollPosition); } protected function drawDisabledOverlay():void{ if (enabled){ if (contains(disabledOverlay)){ removeChild(disabledOverlay); }; } else { disabledOverlay.x = (disabledOverlay.y = contentPadding); disabledOverlay.width = availableWidth; disabledOverlay.height = availableHeight; disabledOverlay.alpha = (getStyleValue("disabledAlpha") as Number); addChild(disabledOverlay); }; } public function set verticalScrollPosition(_arg1:Number):void{ drawNow(); _verticalScrollBar.scrollPosition = _arg1; setVerticalScrollPosition(_verticalScrollBar.scrollPosition, false); } protected function setContentSize(_arg1:Number, _arg2:Number):void{ if ((((((contentWidth == _arg1)) || (useFixedHorizontalScrolling))) && ((contentHeight == _arg2)))){ return; }; contentWidth = _arg1; contentHeight = _arg2; invalidate(InvalidationType.SIZE); } public function get horizontalScrollPosition():Number{ return (_horizontalScrollBar.scrollPosition); } public function get horizontalScrollBar():ScrollBar{ return (_horizontalScrollBar); } override public function set enabled(_arg1:Boolean):void{ if (enabled == _arg1){ return; }; _verticalScrollBar.enabled = _arg1; _horizontalScrollBar.enabled = _arg1; super.enabled = _arg1; } public function get verticalLineScrollSize():Number{ return (_verticalScrollBar.lineScrollSize); } public function get horizontalScrollPolicy():String{ return (_horizontalScrollPolicy); } protected function calculateAvailableSize():void{ var _local1:Number; var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; _local1 = ScrollBar.WIDTH; _local2 = (contentPadding = Number(getStyleValue("contentPadding"))); _local3 = ((height - (2 * _local2)) - vOffset); vScrollBar = (((_verticalScrollPolicy == ScrollPolicy.ON)) || ((((_verticalScrollPolicy == ScrollPolicy.AUTO)) && ((contentHeight > _local3))))); _local4 = ((width - (vScrollBar) ? _local1 : 0) - (2 * _local2)); _local5 = (useFixedHorizontalScrolling) ? _maxHorizontalScrollPosition : (contentWidth - _local4); hScrollBar = (((_horizontalScrollPolicy == ScrollPolicy.ON)) || ((((_horizontalScrollPolicy == ScrollPolicy.AUTO)) && ((_local5 > 0))))); if (hScrollBar){ _local3 = (_local3 - _local1); }; if (((((((hScrollBar) && (!(vScrollBar)))) && ((_verticalScrollPolicy == ScrollPolicy.AUTO)))) && ((contentHeight > _local3)))){ vScrollBar = true; _local4 = (_local4 - _local1); }; availableHeight = (_local3 + vOffset); availableWidth = _local4; } public function get maxVerticalScrollPosition():Number{ drawNow(); return (Math.max(0, (contentHeight - availableHeight))); } public function set horizontalScrollPosition(_arg1:Number):void{ drawNow(); _horizontalScrollBar.scrollPosition = _arg1; setHorizontalScrollPosition(_horizontalScrollBar.scrollPosition, false); } public function get horizontalLineScrollSize():Number{ return (_horizontalScrollBar.lineScrollSize); } public function set verticalPageScrollSize(_arg1:Number):void{ _verticalPageScrollSize = _arg1; invalidate(InvalidationType.SIZE); } public function get verticalScrollPolicy():String{ return (_verticalScrollPolicy); } protected function setHorizontalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ } public function get useBitmapScrolling():Boolean{ return (_useBitmpScrolling); } protected function handleScroll(_arg1:ScrollEvent):void{ if (_arg1.target == _verticalScrollBar){ setVerticalScrollPosition(_arg1.position); } else { setHorizontalScrollPosition(_arg1.position); }; } public function set verticalLineScrollSize(_arg1:Number):void{ _verticalScrollBar.lineScrollSize = _arg1; } public function get verticalScrollBar():ScrollBar{ return (_verticalScrollBar); } protected function setVerticalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ } public function set horizontalPageScrollSize(_arg1:Number):void{ _horizontalPageScrollSize = _arg1; invalidate(InvalidationType.SIZE); } override protected function draw():void{ if (isInvalid(InvalidationType.STYLES)){ setStyles(); drawBackground(); if (contentPadding != getStyleValue("contentPadding")){ invalidate(InvalidationType.SIZE, false); }; }; if (isInvalid(InvalidationType.SIZE, InvalidationType.STATE)){ drawLayout(); }; updateChildren(); super.draw(); } public function set horizontalScrollPolicy(_arg1:String):void{ _horizontalScrollPolicy = _arg1; invalidate(InvalidationType.SIZE); } override protected function configUI():void{ var _local1:Graphics; super.configUI(); contentScrollRect = new Rectangle(0, 0, 85, 85); _verticalScrollBar = new ScrollBar(); _verticalScrollBar.addEventListener(ScrollEvent.SCROLL, handleScroll, false, 0, true); _verticalScrollBar.visible = false; _verticalScrollBar.lineScrollSize = defaultLineScrollSize; addChild(_verticalScrollBar); copyStylesToChild(_verticalScrollBar, SCROLL_BAR_STYLES); _horizontalScrollBar = new ScrollBar(); _horizontalScrollBar.direction = ScrollBarDirection.HORIZONTAL; _horizontalScrollBar.addEventListener(ScrollEvent.SCROLL, handleScroll, false, 0, true); _horizontalScrollBar.visible = false; _horizontalScrollBar.lineScrollSize = defaultLineScrollSize; addChild(_horizontalScrollBar); copyStylesToChild(_horizontalScrollBar, SCROLL_BAR_STYLES); disabledOverlay = new Shape(); _local1 = disabledOverlay.graphics; _local1.beginFill(0xFFFFFF); _local1.drawRect(0, 0, width, height); _local1.endFill(); addEventListener(MouseEvent.MOUSE_WHEEL, handleWheel, false, 0, true); } protected function calculateContentWidth():void{ } public function get verticalPageScrollSize():Number{ if (isNaN(availableHeight)){ drawNow(); }; return (((((_verticalPageScrollSize == 0)) && (!(isNaN(availableHeight))))) ? availableHeight : _verticalPageScrollSize); } protected function drawLayout():void{ calculateAvailableSize(); calculateContentWidth(); background.width = width; background.height = height; if (vScrollBar){ _verticalScrollBar.visible = true; _verticalScrollBar.x = ((width - ScrollBar.WIDTH) - contentPadding); _verticalScrollBar.y = contentPadding; _verticalScrollBar.height = availableHeight; } else { _verticalScrollBar.visible = false; }; _verticalScrollBar.setScrollProperties(availableHeight, 0, (contentHeight - availableHeight), verticalPageScrollSize); setVerticalScrollPosition(_verticalScrollBar.scrollPosition, false); if (hScrollBar){ _horizontalScrollBar.visible = true; _horizontalScrollBar.x = contentPadding; _horizontalScrollBar.y = ((height - ScrollBar.WIDTH) - contentPadding); _horizontalScrollBar.width = availableWidth; } else { _horizontalScrollBar.visible = false; }; _horizontalScrollBar.setScrollProperties(availableWidth, 0, (useFixedHorizontalScrolling) ? _maxHorizontalScrollPosition : (contentWidth - availableWidth), horizontalPageScrollSize); setHorizontalScrollPosition(_horizontalScrollBar.scrollPosition, false); drawDisabledOverlay(); } protected function drawBackground():void{ var _local1:DisplayObject; _local1 = background; background = getDisplayObjectInstance(getStyleValue("skin")); background.width = width; background.height = height; addChildAt(background, 0); if (((!((_local1 == null))) && (!((_local1 == background))))){ removeChild(_local1); }; } public function set horizontalLineScrollSize(_arg1:Number):void{ _horizontalScrollBar.lineScrollSize = _arg1; } public function get horizontalPageScrollSize():Number{ if (isNaN(availableWidth)){ drawNow(); }; return (((((_horizontalPageScrollSize == 0)) && (!(isNaN(availableWidth))))) ? availableWidth : _horizontalPageScrollSize); } public function get maxHorizontalScrollPosition():Number{ drawNow(); return (Math.max(0, (contentWidth - availableWidth))); } protected function setStyles():void{ copyStylesToChild(_verticalScrollBar, SCROLL_BAR_STYLES); copyStylesToChild(_horizontalScrollBar, SCROLL_BAR_STYLES); } protected function updateChildren():void{ _verticalScrollBar.enabled = (_horizontalScrollBar.enabled = enabled); _verticalScrollBar.drawNow(); _horizontalScrollBar.drawNow(); } public function set verticalScrollPolicy(_arg1:String):void{ _verticalScrollPolicy = _arg1; invalidate(InvalidationType.SIZE); } public function set useBitmapScrolling(_arg1:Boolean):void{ _useBitmpScrolling = _arg1; invalidate(InvalidationType.STATE); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, ScrollBar.getStyleDefinition())); } } }//package fl.containersSection 2//ScrollPane (fl.containers.ScrollPane) package fl.containers { import fl.controls.*; import flash.display.*; import fl.core.*; import flash.events.*; import fl.managers.*; import fl.events.*; import flash.net.*; import flash.system.*; import flash.ui.*; public class ScrollPane extends BaseScrollPane implements IFocusManagerComponent { protected var scrollDragHPos:Number; protected var loader:Loader; protected var yOffset:Number; protected var currentContent:Object; protected var xOffset:Number; protected var _source:Object;// = "" protected var scrollDragVPos:Number; protected var _scrollDrag:Boolean;// = false protected var contentClip:Sprite; private static var defaultStyles:Object = {upSkin:"ScrollPane_upSkin", disabledSkin:"ScrollPane_disabledSkin", focusRectSkin:null, focusRectPadding:null, contentPadding:0}; public function ScrollPane(){ _source = ""; _scrollDrag = false; super(); } public function get source():Object{ return (_source); } public function set source(_arg1:Object):void{ var _local2:*; clearContent(); if (isLivePreview){ return; }; _source = _arg1; if ((((_source == "")) || ((_source == null)))){ return; }; currentContent = getDisplayObjectInstance(_arg1); if (currentContent != null){ _local2 = contentClip.addChild((currentContent as DisplayObject)); dispatchEvent(new Event(Event.INIT)); update(); } else { load(new URLRequest(_source.toString())); }; } public function get bytesLoaded():Number{ return (((((loader == null)) || ((loader.contentLoaderInfo == null)))) ? 0 : loader.contentLoaderInfo.bytesLoaded); } protected function doDrag(_arg1:MouseEvent):void{ var _local2:*; var _local3:*; _local2 = (scrollDragVPos - (mouseY - yOffset)); _verticalScrollBar.setScrollPosition(_local2); setVerticalScrollPosition(_verticalScrollBar.scrollPosition, true); _local3 = (scrollDragHPos - (mouseX - xOffset)); _horizontalScrollBar.setScrollPosition(_local3); setHorizontalScrollPosition(_horizontalScrollBar.scrollPosition, true); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ var _local2:int; _local2 = calculateAvailableHeight(); switch (_arg1.keyCode){ case Keyboard.DOWN: verticalScrollPosition++; break; case Keyboard.UP: verticalScrollPosition--; break; case Keyboard.RIGHT: horizontalScrollPosition++; break; case Keyboard.LEFT: horizontalScrollPosition--; break; case Keyboard.END: verticalScrollPosition = maxVerticalScrollPosition; break; case Keyboard.HOME: verticalScrollPosition = 0; break; case Keyboard.PAGE_UP: verticalScrollPosition = (verticalScrollPosition - _local2); break; case Keyboard.PAGE_DOWN: verticalScrollPosition = (verticalScrollPosition + _local2); break; }; } protected function doStartDrag(_arg1:MouseEvent):void{ if (!enabled){ return; }; xOffset = mouseX; yOffset = mouseY; scrollDragHPos = horizontalScrollPosition; scrollDragVPos = verticalScrollPosition; stage.addEventListener(MouseEvent.MOUSE_MOVE, doDrag, false, 0, true); } public function get content():DisplayObject{ var _local1:Object; _local1 = currentContent; if ((_local1 is URLRequest)){ _local1 = loader.content; }; return ((_local1 as DisplayObject)); } public function get percentLoaded():Number{ if (loader != null){ return (Math.round(((bytesLoaded / bytesTotal) * 100))); }; return (0); } protected function endDrag(_arg1:MouseEvent):void{ stage.removeEventListener(MouseEvent.MOUSE_MOVE, doDrag); } public function update():void{ var _local1:DisplayObject; _local1 = contentClip.getChildAt(0); setContentSize(_local1.width, _local1.height); } override protected function setHorizontalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ var _local3:*; _local3 = contentClip.scrollRect; _local3.x = _arg1; contentClip.scrollRect = _local3; } public function refreshPane():void{ if ((_source is URLRequest)){ _source = _source.url; }; source = _source; } protected function passEvent(_arg1:Event):void{ dispatchEvent(_arg1); } protected function calculateAvailableHeight():Number{ var _local1:Number; _local1 = Number(getStyleValue("contentPadding")); return (((height - (_local1 * 2)) - ((((_horizontalScrollPolicy == ScrollPolicy.ON)) || ((((_horizontalScrollPolicy == ScrollPolicy.AUTO)) && ((_maxHorizontalScrollPosition > 0)))))) ? 15 : 0)); } public function load(_arg1:URLRequest, _arg2:LoaderContext=null):void{ if (_arg2 == null){ _arg2 = new LoaderContext(false, ApplicationDomain.currentDomain); }; clearContent(); initLoader(); currentContent = (_source = _arg1); loader.load(_arg1, _arg2); } override protected function handleScroll(_arg1:ScrollEvent):void{ passEvent(_arg1); super.handleScroll(_arg1); } override protected function setVerticalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ var _local3:*; _local3 = contentClip.scrollRect; _local3.y = _arg1; contentClip.scrollRect = _local3; } protected function initLoader():void{ loader = new Loader(); loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, passEvent, false, 0, true); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onContentLoad, false, 0, true); loader.contentLoaderInfo.addEventListener(Event.INIT, passEvent, false, 0, true); contentClip.addChild(loader); } override protected function draw():void{ if (isInvalid(InvalidationType.STYLES)){ drawBackground(); }; if (isInvalid(InvalidationType.STATE)){ setScrollDrag(); }; super.draw(); } override protected function configUI():void{ super.configUI(); contentClip = new Sprite(); addChild(contentClip); contentClip.scrollRect = contentScrollRect; _horizontalScrollPolicy = ScrollPolicy.AUTO; _verticalScrollPolicy = ScrollPolicy.AUTO; } public function set scrollDrag(_arg1:Boolean):void{ _scrollDrag = _arg1; invalidate(InvalidationType.STATE); } protected function clearContent():void{ if (contentClip.numChildren == 0){ return; }; contentClip.removeChildAt(0); currentContent = null; if (loader != null){ try { loader.close(); } catch(e) { }; try { loader.unload(); } catch(e) { }; loader = null; }; } override protected function drawLayout():void{ super.drawLayout(); contentScrollRect = contentClip.scrollRect; contentScrollRect.width = availableWidth; contentScrollRect.height = availableHeight; contentClip.cacheAsBitmap = useBitmapScrolling; contentClip.scrollRect = contentScrollRect; contentClip.x = (contentClip.y = contentPadding); } override protected function drawBackground():void{ var _local1:DisplayObject; _local1 = background; background = getDisplayObjectInstance(getStyleValue((enabled) ? "upSkin" : "disabledSkin")); background.width = width; background.height = height; addChildAt(background, 0); if (((!((_local1 == null))) && (!((_local1 == background))))){ removeChild(_local1); }; } public function get bytesTotal():Number{ return (((((loader == null)) || ((loader.contentLoaderInfo == null)))) ? 0 : loader.contentLoaderInfo.bytesTotal); } protected function onContentLoad(_arg1:Event):void{ var _local2:*; update(); _local2 = calculateAvailableHeight(); calculateAvailableSize(); horizontalScrollBar.setScrollProperties(availableWidth, 0, (useFixedHorizontalScrolling) ? _maxHorizontalScrollPosition : (contentWidth - availableWidth), availableWidth); verticalScrollBar.setScrollProperties(_local2, 0, (contentHeight - _local2), _local2); passEvent(_arg1); } public function get scrollDrag():Boolean{ return (_scrollDrag); } protected function setScrollDrag():void{ if (_scrollDrag){ contentClip.addEventListener(MouseEvent.MOUSE_DOWN, doStartDrag, false, 0, true); stage.addEventListener(MouseEvent.MOUSE_UP, endDrag, false, 0, true); } else { contentClip.removeEventListener(MouseEvent.MOUSE_DOWN, doStartDrag); stage.removeEventListener(MouseEvent.MOUSE_UP, endDrag); removeEventListener(MouseEvent.MOUSE_MOVE, doDrag); }; contentClip.buttonMode = _scrollDrag; } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, BaseScrollPane.getStyleDefinition())); } } }//package fl.containersSection 3//BaseButton (fl.controls.BaseButton) package fl.controls { import flash.display.*; import fl.core.*; import flash.events.*; import flash.utils.*; import fl.events.*; public class BaseButton extends UIComponent { protected var _selected:Boolean;// = false private var unlockedMouseState:String; protected var pressTimer:Timer; protected var mouseState:String; protected var background:DisplayObject; private var _mouseStateLocked:Boolean;// = false protected var _autoRepeat:Boolean;// = false private static var defaultStyles:Object = {upSkin:"Button_upSkin", downSkin:"Button_downSkin", overSkin:"Button_overSkin", disabledSkin:"Button_disabledSkin", selectedDisabledSkin:"Button_selectedDisabledSkin", selectedUpSkin:"Button_selectedUpSkin", selectedDownSkin:"Button_selectedDownSkin", selectedOverSkin:"Button_selectedOverSkin", focusRectSkin:null, focusRectPadding:null, repeatDelay:500, repeatInterval:35}; public function BaseButton(){ _selected = false; _autoRepeat = false; _mouseStateLocked = false; super(); buttonMode = true; mouseChildren = false; useHandCursor = false; setupMouseEvents(); setMouseState("up"); pressTimer = new Timer(1, 0); pressTimer.addEventListener(TimerEvent.TIMER, buttonDown, false, 0, true); } protected function endPress():void{ pressTimer.reset(); } public function set mouseStateLocked(_arg1:Boolean):void{ _mouseStateLocked = _arg1; if (_arg1 == false){ setMouseState(unlockedMouseState); } else { unlockedMouseState = mouseState; }; } public function get autoRepeat():Boolean{ return (_autoRepeat); } public function set autoRepeat(_arg1:Boolean):void{ _autoRepeat = _arg1; } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; mouseEnabled = _arg1; } public function get selected():Boolean{ return (_selected); } protected function mouseEventHandler(_arg1:MouseEvent):void{ if (_arg1.type == MouseEvent.MOUSE_DOWN){ setMouseState("down"); startPress(); } else { if ((((_arg1.type == MouseEvent.ROLL_OVER)) || ((_arg1.type == MouseEvent.MOUSE_UP)))){ setMouseState("over"); endPress(); } else { if (_arg1.type == MouseEvent.ROLL_OUT){ setMouseState("up"); endPress(); }; }; }; } public function setMouseState(_arg1:String):void{ if (_mouseStateLocked){ unlockedMouseState = _arg1; return; }; if (mouseState == _arg1){ return; }; mouseState = _arg1; invalidate(InvalidationType.STATE); } protected function startPress():void{ if (_autoRepeat){ pressTimer.delay = Number(getStyleValue("repeatDelay")); pressTimer.start(); }; dispatchEvent(new ComponentEvent(ComponentEvent.BUTTON_DOWN, true)); } protected function buttonDown(_arg1:TimerEvent):void{ if (!_autoRepeat){ endPress(); return; }; if (pressTimer.currentCount == 1){ pressTimer.delay = Number(getStyleValue("repeatInterval")); }; dispatchEvent(new ComponentEvent(ComponentEvent.BUTTON_DOWN, true)); } public function set selected(_arg1:Boolean):void{ if (_selected == _arg1){ return; }; _selected = _arg1; invalidate(InvalidationType.STATE); } override public function get enabled():Boolean{ return (super.enabled); } override protected function draw():void{ if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ drawBackground(); invalidate(InvalidationType.SIZE, false); }; if (isInvalid(InvalidationType.SIZE)){ drawLayout(); }; super.draw(); } protected function setupMouseEvents():void{ addEventListener(MouseEvent.ROLL_OVER, mouseEventHandler, false, 0, true); addEventListener(MouseEvent.MOUSE_DOWN, mouseEventHandler, false, 0, true); addEventListener(MouseEvent.MOUSE_UP, mouseEventHandler, false, 0, true); addEventListener(MouseEvent.ROLL_OUT, mouseEventHandler, false, 0, true); } protected function drawLayout():void{ background.width = width; background.height = height; } protected function drawBackground():void{ var _local1:String; var _local2:DisplayObject; _local1 = (enabled) ? mouseState : "disabled"; if (selected){ _local1 = (("selected" + _local1.substr(0, 1).toUpperCase()) + _local1.substr(1)); }; _local1 = (_local1 + "Skin"); _local2 = background; background = getDisplayObjectInstance(getStyleValue(_local1)); addChildAt(background, 0); if (((!((_local2 == null))) && (!((_local2 == background))))){ removeChild(_local2); }; } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controlsSection 4//Button (fl.controls.Button) package fl.controls { import flash.display.*; import fl.core.*; import fl.managers.*; public class Button extends LabelButton implements IFocusManagerComponent { protected var emphasizedBorder:DisplayObject; protected var _emphasized:Boolean;// = false private static var defaultStyles:Object = {emphasizedSkin:"Button_emphasizedSkin", emphasizedPadding:2}; public static var createAccessibilityImplementation:Function; public function Button(){ _emphasized = false; super(); } override public function drawFocus(_arg1:Boolean):void{ var _local2:Number; var _local3:*; super.drawFocus(_arg1); if (_arg1){ _local2 = Number(getStyleValue("emphasizedPadding")); if ((((_local2 < 0)) || (!(_emphasized)))){ _local2 = 0; }; _local3 = getStyleValue("focusRectPadding"); _local3 = ((_local3)==null) ? 2 : _local3; _local3 = (_local3 + _local2); uiFocusRect.x = -(_local3); uiFocusRect.y = -(_local3); uiFocusRect.width = (width + (_local3 * 2)); uiFocusRect.height = (height + (_local3 * 2)); }; } public function set emphasized(_arg1:Boolean):void{ _emphasized = _arg1; invalidate(InvalidationType.STYLES); } override protected function draw():void{ if (((isInvalid(InvalidationType.STYLES)) || (isInvalid(InvalidationType.SIZE)))){ drawEmphasized(); }; super.draw(); if (emphasizedBorder != null){ setChildIndex(emphasizedBorder, (numChildren - 1)); }; } public function get emphasized():Boolean{ return (_emphasized); } override protected function initializeAccessibility():void{ if (Button.createAccessibilityImplementation != null){ Button.createAccessibilityImplementation(this); }; } protected function drawEmphasized():void{ var _local1:Object; var _local2:Number; if (emphasizedBorder != null){ removeChild(emphasizedBorder); }; emphasizedBorder = null; if (!_emphasized){ return; }; _local1 = getStyleValue("emphasizedSkin"); if (_local1 != null){ emphasizedBorder = getDisplayObjectInstance(_local1); }; if (emphasizedBorder != null){ addChildAt(emphasizedBorder, 0); _local2 = Number(getStyleValue("emphasizedPadding")); emphasizedBorder.x = (emphasizedBorder.y = -(_local2)); emphasizedBorder.width = (width + (_local2 * 2)); emphasizedBorder.height = (height + (_local2 * 2)); }; } public static function getStyleDefinition():Object{ return (UIComponent.mergeStyles(LabelButton.getStyleDefinition(), defaultStyles)); } } }//package fl.controlsSection 5//ButtonLabelPlacement (fl.controls.ButtonLabelPlacement) package fl.controls { public class ButtonLabelPlacement { public static const TOP:String = "top"; public static const LEFT:String = "left"; public static const BOTTOM:String = "bottom"; public static const RIGHT:String = "right"; } }//package fl.controlsSection 6//Label (fl.controls.Label) package fl.controls { import fl.core.*; import flash.text.*; import fl.events.*; public class Label extends UIComponent { protected var actualHeight:Number; protected var _html:Boolean;// = false protected var actualWidth:Number; protected var defaultLabel:String;// = "Label" protected var _savedHTML:String; public var textField:TextField; private static var defaultStyles:Object = {textFormat:null, embedFonts:false}; public function Label(){ defaultLabel = "Label"; _html = false; super(); text = defaultLabel; actualWidth = _width; actualHeight = _height; } public function get autoSize():String{ return (textField.autoSize); } public function get selectable():Boolean{ return (textField.selectable); } public function set text(_arg1:String):void{ if (_arg1 == text){ return; }; if (((componentInspectorSetting) && ((_arg1 == defaultLabel)))){ return; }; _html = false; textField.text = _arg1; if (textField.autoSize != TextFieldAutoSize.NONE){ invalidate(InvalidationType.SIZE); }; } public function get wordWrap():Boolean{ return (textField.wordWrap); } public function set condenseWhite(_arg1:Boolean):void{ textField.condenseWhite = _arg1; if (textField.autoSize != TextFieldAutoSize.NONE){ invalidate(InvalidationType.SIZE); }; } public function set selectable(_arg1:Boolean):void{ textField.selectable = _arg1; } public function set autoSize(_arg1:String):void{ textField.autoSize = _arg1; invalidate(InvalidationType.SIZE); } public function set wordWrap(_arg1:Boolean):void{ textField.wordWrap = _arg1; if (textField.autoSize != TextFieldAutoSize.NONE){ invalidate(InvalidationType.SIZE); }; } override public function get height():Number{ if (((!((textField.autoSize == TextFieldAutoSize.NONE))) && (wordWrap))){ return (_height); }; return (actualHeight); } public function set htmlText(_arg1:String):void{ if (_arg1 == htmlText){ return; }; if (((componentInspectorSetting) && ((_arg1 == "")))){ return; }; _html = true; _savedHTML = _arg1; textField.htmlText = _arg1; if (textField.autoSize != TextFieldAutoSize.NONE){ invalidate(InvalidationType.SIZE); }; } public function get text():String{ return (textField.text); } public function get condenseWhite():Boolean{ return (textField.condenseWhite); } override protected function draw():void{ var _local1:Object; if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ drawTextFormat(); _local1 = getStyleValue("embedFonts"); if (_local1 != null){ textField.embedFonts = _local1; }; if (textField.autoSize != TextFieldAutoSize.NONE){ invalidate(InvalidationType.SIZE, false); }; }; if (isInvalid(InvalidationType.SIZE)){ drawLayout(); }; super.draw(); } override protected function configUI():void{ super.configUI(); textField = new TextField(); addChild(textField); textField.type = TextFieldType.DYNAMIC; textField.selectable = false; textField.wordWrap = false; } public function get htmlText():String{ return (textField.htmlText); } override public function setSize(_arg1:Number, _arg2:Number):void{ actualWidth = _arg1; actualHeight = _arg2; super.setSize(_arg1, _arg2); } override public function set width(_arg1:Number):void{ actualWidth = _arg1; super.width = _arg1; } protected function drawLayout():void{ var _local1:Boolean; var _local2:Number; var _local3:Number; _local1 = false; textField.width = width; textField.height = height; if (textField.autoSize != TextFieldAutoSize.NONE){ _local2 = textField.width; _local3 = textField.height; _local1 = ((!((_width == _local2))) || (!((_height == _local3)))); _width = _local2; _height = _local3; switch (textField.autoSize){ case TextFieldAutoSize.CENTER: textField.x = ((actualWidth / 2) - (textField.width / 2)); break; case TextFieldAutoSize.LEFT: textField.x = 0; break; case TextFieldAutoSize.RIGHT: textField.x = -((textField.width - actualWidth)); break; }; } else { textField.width = actualWidth; textField.height = actualHeight; textField.x = 0; }; if (_local1){ dispatchEvent(new ComponentEvent(ComponentEvent.RESIZE, true)); }; } override public function get width():Number{ if (((!((textField.autoSize == TextFieldAutoSize.NONE))) && (!(wordWrap)))){ return (_width); }; return (actualWidth); } protected function drawTextFormat():void{ var _local1:TextFormat; var _local2:Object; _local1 = (getStyleValue("textFormat") as TextFormat); if (_local1 == null){ _local2 = UIComponent.getStyleDefinition(); _local1 = (enabled) ? (_local2.defaultTextFormat as TextFormat) : (_local2.defaultDisabledTextFormat as TextFormat); }; textField.defaultTextFormat = _local1; textField.setTextFormat(_local1); if (((_html) && (!((_savedHTML == null))))){ htmlText = _savedHTML; }; } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controlsSection 7//LabelButton (fl.controls.LabelButton) package fl.controls { import flash.display.*; import fl.core.*; import flash.events.*; import fl.managers.*; import flash.text.*; import fl.events.*; import flash.ui.*; public class LabelButton extends BaseButton implements IFocusManagerComponent { protected var _labelPlacement:String;// = "right" protected var _toggle:Boolean;// = false protected var icon:DisplayObject; protected var oldMouseState:String; protected var mode:String;// = "center" public var textField:TextField; protected var _label:String;// = "Label" private static var defaultStyles:Object = {icon:null, upIcon:null, downIcon:null, overIcon:null, disabledIcon:null, selectedDisabledIcon:null, selectedUpIcon:null, selectedDownIcon:null, selectedOverIcon:null, textFormat:null, disabledTextFormat:null, textPadding:5, embedFonts:false}; public static var createAccessibilityImplementation:Function; public function LabelButton(){ _labelPlacement = ButtonLabelPlacement.RIGHT; _toggle = false; _label = "Label"; mode = "center"; super(); } protected function toggleSelected(_arg1:MouseEvent):void{ selected = !(selected); dispatchEvent(new Event(Event.CHANGE, true)); } public function get labelPlacement():String{ return (_labelPlacement); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ if (!enabled){ return; }; if (_arg1.keyCode == Keyboard.SPACE){ if (oldMouseState == null){ oldMouseState = mouseState; }; setMouseState("down"); startPress(); }; } protected function setEmbedFont(){ var _local1:Object; _local1 = getStyleValue("embedFonts"); if (_local1 != null){ textField.embedFonts = _local1; }; } override protected function keyUpHandler(_arg1:KeyboardEvent):void{ if (!enabled){ return; }; if (_arg1.keyCode == Keyboard.SPACE){ setMouseState(oldMouseState); oldMouseState = null; endPress(); dispatchEvent(new MouseEvent(MouseEvent.CLICK)); }; } override public function get selected():Boolean{ return ((_toggle) ? _selected : false); } public function set labelPlacement(_arg1:String):void{ _labelPlacement = _arg1; invalidate(InvalidationType.SIZE); } public function set toggle(_arg1:Boolean):void{ if (((!(_arg1)) && (super.selected))){ selected = false; }; _toggle = _arg1; if (_toggle){ addEventListener(MouseEvent.CLICK, toggleSelected, false, 0, true); } else { removeEventListener(MouseEvent.CLICK, toggleSelected); }; invalidate(InvalidationType.STATE); } public function get label():String{ return (_label); } override public function set selected(_arg1:Boolean):void{ _selected = _arg1; if (_toggle){ invalidate(InvalidationType.STATE); }; } override protected function draw():void{ if (textField.text != _label){ label = _label; }; if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ drawBackground(); drawIcon(); drawTextFormat(); invalidate(InvalidationType.SIZE, false); }; if (isInvalid(InvalidationType.SIZE)){ drawLayout(); }; if (isInvalid(InvalidationType.SIZE, InvalidationType.STYLES)){ if (((isFocused) && (focusManager.showFocusIndicator))){ drawFocus(true); }; }; validate(); } public function get toggle():Boolean{ return (_toggle); } override protected function configUI():void{ super.configUI(); textField = new TextField(); textField.type = TextFieldType.DYNAMIC; textField.selectable = false; addChild(textField); } override protected function drawLayout():void{ var _local1:Number; var _local2:String; var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Number; _local1 = Number(getStyleValue("textPadding")); _local2 = ((((icon == null)) && ((mode == "center")))) ? ButtonLabelPlacement.TOP : _labelPlacement; textField.height = (textField.textHeight + 4); _local3 = (textField.textWidth + 4); _local4 = (textField.textHeight + 4); _local5 = ((icon)==null) ? 0 : (icon.width + _local1); _local6 = ((icon)==null) ? 0 : (icon.height + _local1); textField.visible = (label.length > 0); if (icon != null){ icon.x = Math.round(((width - icon.width) / 2)); icon.y = Math.round(((height - icon.height) / 2)); }; if (textField.visible == false){ textField.width = 0; textField.height = 0; } else { if ((((_local2 == ButtonLabelPlacement.BOTTOM)) || ((_local2 == ButtonLabelPlacement.TOP)))){ _local7 = Math.max(0, Math.min(_local3, (width - (2 * _local1)))); if ((height - 2) > _local4){ _local8 = _local4; } else { _local8 = (height - 2); }; _local3 = _local7; textField.width = _local3; _local4 = _local8; textField.height = _local4; textField.x = Math.round(((width - _local3) / 2)); textField.y = Math.round(((((height - textField.height) - _local6) / 2) + ((_local2)==ButtonLabelPlacement.BOTTOM) ? _local6 : 0)); if (icon != null){ icon.y = Math.round(((_local2)==ButtonLabelPlacement.BOTTOM) ? (textField.y - _local6) : ((textField.y + textField.height) + _local1)); }; } else { _local7 = Math.max(0, Math.min(_local3, ((width - _local5) - (2 * _local1)))); _local3 = _local7; textField.width = _local3; textField.x = Math.round(((((width - _local3) - _local5) / 2) + ((_local2)!=ButtonLabelPlacement.LEFT) ? _local5 : 0)); textField.y = Math.round(((height - textField.height) / 2)); if (icon != null){ icon.x = Math.round(((_local2)!=ButtonLabelPlacement.LEFT) ? (textField.x - _local5) : ((textField.x + _local3) + _local1)); }; }; }; super.drawLayout(); } override protected function initializeAccessibility():void{ if (LabelButton.createAccessibilityImplementation != null){ LabelButton.createAccessibilityImplementation(this); }; } protected function drawIcon():void{ var _local1:DisplayObject; var _local2:String; var _local3:Object; _local1 = icon; _local2 = (enabled) ? mouseState : "disabled"; if (selected){ _local2 = (("selected" + _local2.substr(0, 1).toUpperCase()) + _local2.substr(1)); }; _local2 = (_local2 + "Icon"); _local3 = getStyleValue(_local2); if (_local3 == null){ _local3 = getStyleValue("icon"); }; if (_local3 != null){ icon = getDisplayObjectInstance(_local3); }; if (icon != null){ addChildAt(icon, 1); }; if (((!((_local1 == null))) && (!((_local1 == icon))))){ removeChild(_local1); }; } public function set label(_arg1:String):void{ _label = _arg1; if (textField.text != _label){ textField.text = _label; dispatchEvent(new ComponentEvent(ComponentEvent.LABEL_CHANGE)); }; invalidate(InvalidationType.SIZE); invalidate(InvalidationType.STYLES); } protected function drawTextFormat():void{ var _local1:Object; var _local2:TextFormat; var _local3:TextFormat; _local1 = UIComponent.getStyleDefinition(); _local2 = (enabled) ? (_local1.defaultTextFormat as TextFormat) : (_local1.defaultDisabledTextFormat as TextFormat); textField.setTextFormat(_local2); _local3 = (getStyleValue((enabled) ? "textFormat" : "disabledTextFormat") as TextFormat); if (_local3 != null){ textField.setTextFormat(_local3); } else { _local3 = _local2; }; textField.defaultTextFormat = _local3; setEmbedFont(); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, BaseButton.getStyleDefinition())); } } }//package fl.controlsSection 8//RadioButton (fl.controls.RadioButton) package fl.controls { import flash.display.*; import flash.events.*; import fl.managers.*; import flash.ui.*; public class RadioButton extends LabelButton implements IFocusManagerGroup { protected var _value:Object; protected var defaultGroupName:String;// = "RadioButtonGroup" protected var _group:RadioButtonGroup; private static var defaultStyles:Object = {icon:null, upIcon:"RadioButton_upIcon", downIcon:"RadioButton_downIcon", overIcon:"RadioButton_overIcon", disabledIcon:"RadioButton_disabledIcon", selectedDisabledIcon:"RadioButton_selectedDisabledIcon", selectedUpIcon:"RadioButton_selectedUpIcon", selectedDownIcon:"RadioButton_selectedDownIcon", selectedOverIcon:"RadioButton_selectedOverIcon", focusRectSkin:null, focusRectPadding:null, textFormat:null, disabledTextFormat:null, embedFonts:null, textPadding:5}; public static var createAccessibilityImplementation:Function; public function RadioButton(){ defaultGroupName = "RadioButtonGroup"; super(); mode = "border"; groupName = defaultGroupName; } override public function drawFocus(_arg1:Boolean):void{ var _local2:Number; super.drawFocus(_arg1); if (_arg1){ _local2 = Number(getStyleValue("focusRectPadding")); uiFocusRect.x = (background.x - _local2); uiFocusRect.y = (background.y - _local2); uiFocusRect.width = (background.width + (_local2 * 2)); uiFocusRect.height = (background.height + (_local2 * 2)); }; } private function setThis():void{ var _local1:RadioButtonGroup; _local1 = _group; if (_local1 != null){ if (_local1.selection != this){ _local1.selection = this; }; } else { super.selected = true; }; } override public function get autoRepeat():Boolean{ return (false); } override public function set autoRepeat(_arg1:Boolean):void{ } protected function handleClick(_arg1:MouseEvent):void{ if (_group == null){ return; }; _group.dispatchEvent(new MouseEvent(MouseEvent.CLICK, true)); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ switch (_arg1.keyCode){ case Keyboard.DOWN: setNext(!(_arg1.ctrlKey)); _arg1.stopPropagation(); break; case Keyboard.UP: setPrev(!(_arg1.ctrlKey)); _arg1.stopPropagation(); break; case Keyboard.LEFT: setPrev(!(_arg1.ctrlKey)); _arg1.stopPropagation(); break; case Keyboard.RIGHT: setNext(!(_arg1.ctrlKey)); _arg1.stopPropagation(); break; case Keyboard.SPACE: setThis(); _toggle = false; default: super.keyDownHandler(_arg1); break; }; } private function setNext(_arg1:Boolean=true):void{ var _local2:RadioButtonGroup; var _local3:IFocusManager; var _local4:int; var _local5:Number; var _local6:int; var _local7:*; _local2 = _group; if (_local2 == null){ return; }; _local3 = focusManager; if (_local3){ _local3.showFocusIndicator = true; }; _local4 = _local2.getRadioButtonIndex(this); _local5 = _local2.numRadioButtons; _local6 = _local4; if (_local4 != -1){ do { _local6++; _local6 = ((_local6)>(_local2.numRadioButtons - 1)) ? 0 : _local6; _local7 = _local2.getRadioButtonAt(_local6); if (((_local7) && (_local7.enabled))){ if (_arg1){ _local2.selection = _local7; }; _local7.setFocus(); return; }; if (((_arg1) && (!((_local2.getRadioButtonAt(_local6) == _local2.selection))))){ _local2.selection = this; }; this.drawFocus(true); } while (_local6 != _local4); }; } public function get group():RadioButtonGroup{ return (_group); } override protected function keyUpHandler(_arg1:KeyboardEvent):void{ super.keyUpHandler(_arg1); if ((((_arg1.keyCode == Keyboard.SPACE)) && (!(_toggle)))){ _toggle = true; }; } override public function get selected():Boolean{ return (super.selected); } override public function set toggle(_arg1:Boolean):void{ throw (new Error("Warning: You cannot change a RadioButtons toggle.")); } public function set value(_arg1:Object):void{ _value = _arg1; } public function set group(_arg1:RadioButtonGroup):void{ groupName = _arg1.name; } override public function set selected(_arg1:Boolean):void{ if ((((_arg1 == false)) || (selected))){ return; }; if (_group != null){ _group.selection = this; } else { super.selected = _arg1; }; } override protected function draw():void{ super.draw(); } override public function get toggle():Boolean{ return (true); } override protected function configUI():void{ var _local1:Shape; var _local2:Graphics; super.configUI(); super.toggle = true; _local1 = new Shape(); _local2 = _local1.graphics; _local2.beginFill(0, 0); _local2.drawRect(0, 0, 100, 100); _local2.endFill(); background = (_local1 as DisplayObject); addChildAt(background, 0); addEventListener(MouseEvent.CLICK, handleClick, false, 0, true); } public function set groupName(_arg1:String):void{ if (_group != null){ _group.removeRadioButton(this); _group.removeEventListener(Event.CHANGE, handleChange); }; _group = ((_arg1)==null) ? null : RadioButtonGroup.getGroup(_arg1); if (_group != null){ _group.addRadioButton(this); _group.addEventListener(Event.CHANGE, handleChange, false, 0, true); }; } public function get value():Object{ return (_value); } override protected function drawLayout():void{ var _local1:Number; super.drawLayout(); _local1 = Number(getStyleValue("textPadding")); switch (_labelPlacement){ case ButtonLabelPlacement.RIGHT: icon.x = _local1; textField.x = (icon.x + (icon.width + _local1)); background.width = ((textField.x + textField.width) + _local1); background.height = (Math.max(textField.height, icon.height) + (_local1 * 2)); break; case ButtonLabelPlacement.LEFT: icon.x = ((width - icon.width) - _local1); textField.x = (((width - icon.width) - (_local1 * 2)) - textField.width); background.width = ((textField.width + icon.width) + (_local1 * 3)); background.height = (Math.max(textField.height, icon.height) + (_local1 * 2)); break; case ButtonLabelPlacement.TOP: case ButtonLabelPlacement.BOTTOM: background.width = (Math.max(textField.width, icon.width) + (_local1 * 2)); background.height = ((textField.height + icon.height) + (_local1 * 3)); break; }; background.x = Math.min((icon.x - _local1), (textField.x - _local1)); background.y = Math.min((icon.y - _local1), (textField.y - _local1)); } override protected function drawBackground():void{ } override protected function initializeAccessibility():void{ if (RadioButton.createAccessibilityImplementation != null){ RadioButton.createAccessibilityImplementation(this); }; } public function get groupName():String{ return (((_group)==null) ? null : _group.name); } private function setPrev(_arg1:Boolean=true):void{ var _local2:RadioButtonGroup; var _local3:IFocusManager; var _local4:int; var _local5:int; var _local6:*; _local2 = _group; if (_local2 == null){ return; }; _local3 = focusManager; if (_local3){ _local3.showFocusIndicator = true; }; _local4 = _local2.getRadioButtonIndex(this); _local5 = _local4; if (_local4 != -1){ do { --_local5; _local5 = ((_local5)==-1) ? (_local2.numRadioButtons - 1) : _local5; _local6 = _local2.getRadioButtonAt(_local5); if (((_local6) && (_local6.enabled))){ if (_arg1){ _local2.selection = _local6; }; _local6.setFocus(); return; }; if (((_arg1) && (!((_local2.getRadioButtonAt(_local5) == _local2.selection))))){ _local2.selection = this; }; this.drawFocus(true); } while (_local5 != _local4); }; } protected function handleChange(_arg1:Event):void{ super.selected = (_group.selection == this); dispatchEvent(new Event(Event.CHANGE, true)); } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controlsSection 9//RadioButtonGroup (fl.controls.RadioButtonGroup) package fl.controls { import flash.events.*; public class RadioButtonGroup extends EventDispatcher { protected var _selection:RadioButton; protected var radioButtons:Array; protected var _name:String; private static var groups:Object; private static var groupCount:uint = 0; public function RadioButtonGroup(_arg1:String){ _name = _arg1; radioButtons = []; registerGroup(this); } public function getRadioButtonIndex(_arg1:RadioButton):int{ var _local2:int; var _local3:RadioButton; _local2 = 0; while (_local2 < radioButtons.length) { _local3 = (radioButtons[_local2] as RadioButton); if (_local3 == _arg1){ return (_local2); }; _local2++; }; return (-1); } public function get numRadioButtons():int{ return (radioButtons.length); } public function get name():String{ return (_name); } public function get selection():RadioButton{ return (_selection); } public function set selection(_arg1:RadioButton):void{ if ((((((_selection == _arg1)) || ((_arg1 == null)))) || ((getRadioButtonIndex(_arg1) == -1)))){ return; }; _selection = _arg1; dispatchEvent(new Event(Event.CHANGE, true)); } public function set selectedData(_arg1:Object):void{ var _local2:int; var _local3:RadioButton; _local2 = 0; while (_local2 < radioButtons.length) { _local3 = (radioButtons[_local2] as RadioButton); if (_local3.value == _arg1){ selection = _local3; return; }; _local2++; }; } public function removeRadioButton(_arg1:RadioButton):void{ var _local2:int; _local2 = getRadioButtonIndex(_arg1); if (_local2 != -1){ radioButtons.splice(_local2, 1); }; if (_selection == _arg1){ _selection = null; }; } public function addRadioButton(_arg1:RadioButton):void{ if (_arg1.groupName != name){ _arg1.groupName = name; return; }; radioButtons.push(_arg1); if (_arg1.selected){ selection = _arg1; }; } public function getRadioButtonAt(_arg1:int):RadioButton{ return (RadioButton(radioButtons[_arg1])); } public function get selectedData():Object{ var _local1:RadioButton; _local1 = _selection; return (((_local1)==null) ? null : _local1.value); } public static function getGroup(_arg1:String):RadioButtonGroup{ var _local2:RadioButtonGroup; if (groups == null){ groups = {}; }; _local2 = (groups[_arg1] as RadioButtonGroup); if (_local2 == null){ _local2 = new RadioButtonGroup(_arg1); if ((++groupCount % 20) == 0){ cleanUpGroups(); }; }; return (_local2); } private static function registerGroup(_arg1:RadioButtonGroup):void{ if (groups == null){ groups = {}; }; groups[_arg1.name] = _arg1; } private static function cleanUpGroups():void{ var _local1:String; var _local2:RadioButtonGroup; for (_local1 in groups) { _local2 = (groups[_local1] as RadioButtonGroup); if (_local2.radioButtons.length == 0){ delete groups[_local1]; }; }; } } }//package fl.controlsSection 10//ScrollBar (fl.controls.ScrollBar) package fl.controls { import fl.core.*; import flash.events.*; import fl.events.*; public class ScrollBar extends UIComponent { private var _direction:String;// = "vertical" protected var inDrag:Boolean;// = false protected var upArrow:BaseButton; private var _pageScrollSize:Number;// = 0 protected var downArrow:BaseButton; private var _pageSize:Number;// = 10 private var thumbScrollOffset:Number; private var _maxScrollPosition:Number;// = 0 private var _scrollPosition:Number;// = 0 protected var track:BaseButton; private var _minScrollPosition:Number;// = 0 private var _lineScrollSize:Number;// = 1 protected var thumb:LabelButton; protected static const THUMB_STYLES:Object = {disabledSkin:"thumbDisabledSkin", downSkin:"thumbDownSkin", overSkin:"thumbOverSkin", upSkin:"thumbUpSkin", icon:"thumbIcon", textPadding:0}; public static const WIDTH:Number = 15; protected static const DOWN_ARROW_STYLES:Object = {disabledSkin:"downArrowDisabledSkin", downSkin:"downArrowDownSkin", overSkin:"downArrowOverSkin", upSkin:"downArrowUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; protected static const UP_ARROW_STYLES:Object = {disabledSkin:"upArrowDisabledSkin", downSkin:"upArrowDownSkin", overSkin:"upArrowOverSkin", upSkin:"upArrowUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; protected static const TRACK_STYLES:Object = {disabledSkin:"trackDisabledSkin", downSkin:"trackDownSkin", overSkin:"trackOverSkin", upSkin:"trackUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; private static var defaultStyles:Object = {downArrowDisabledSkin:"ScrollArrowDown_disabledSkin", downArrowDownSkin:"ScrollArrowDown_downSkin", downArrowOverSkin:"ScrollArrowDown_overSkin", downArrowUpSkin:"ScrollArrowDown_upSkin", thumbDisabledSkin:"ScrollThumb_upSkin", thumbDownSkin:"ScrollThumb_downSkin", thumbOverSkin:"ScrollThumb_overSkin", thumbUpSkin:"ScrollThumb_upSkin", trackDisabledSkin:"ScrollTrack_skin", trackDownSkin:"ScrollTrack_skin", trackOverSkin:"ScrollTrack_skin", trackUpSkin:"ScrollTrack_skin", upArrowDisabledSkin:"ScrollArrowUp_disabledSkin", upArrowDownSkin:"ScrollArrowUp_downSkin", upArrowOverSkin:"ScrollArrowUp_overSkin", upArrowUpSkin:"ScrollArrowUp_upSkin", thumbIcon:"ScrollBar_thumbIcon", repeatDelay:500, repeatInterval:35}; public function ScrollBar(){ _pageSize = 10; _pageScrollSize = 0; _lineScrollSize = 1; _minScrollPosition = 0; _maxScrollPosition = 0; _scrollPosition = 0; _direction = ScrollBarDirection.VERTICAL; inDrag = false; super(); setStyles(); focusEnabled = false; } public function get minScrollPosition():Number{ return (_minScrollPosition); } public function set minScrollPosition(_arg1:Number):void{ setScrollProperties(_pageSize, _arg1, _maxScrollPosition); } public function setScrollPosition(_arg1:Number, _arg2:Boolean=true):void{ var _local3:Number; _local3 = scrollPosition; _scrollPosition = Math.max(_minScrollPosition, Math.min(_maxScrollPosition, _arg1)); if (_local3 == _scrollPosition){ return; }; if (_arg2){ dispatchEvent(new ScrollEvent(_direction, (scrollPosition - _local3), scrollPosition)); }; updateThumb(); } public function set scrollPosition(_arg1:Number):void{ setScrollPosition(_arg1, true); } public function get pageScrollSize():Number{ return (((_pageScrollSize)==0) ? _pageSize : _pageScrollSize); } public function set pageSize(_arg1:Number):void{ if (_arg1 > 0){ _pageSize = _arg1; }; } public function setScrollProperties(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number=0):void{ this.pageSize = _arg1; _minScrollPosition = _arg2; _maxScrollPosition = _arg3; if (_arg4 >= 0){ _pageScrollSize = _arg4; }; enabled = (_maxScrollPosition > _minScrollPosition); setScrollPosition(_scrollPosition, false); updateThumb(); } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; downArrow.enabled = (track.enabled = (thumb.enabled = (upArrow.enabled = ((enabled) && ((_maxScrollPosition > _minScrollPosition)))))); updateThumb(); } protected function updateThumb():void{ var _local1:Number; _local1 = ((_maxScrollPosition - _minScrollPosition) + _pageSize); if ((((((track.height <= 12)) || ((_maxScrollPosition <= _minScrollPosition)))) || ((((_local1 == 0)) || (isNaN(_local1)))))){ thumb.height = 12; thumb.visible = false; } else { thumb.height = Math.max(13, ((_pageSize / _local1) * track.height)); thumb.y = (track.y + ((track.height - thumb.height) * ((_scrollPosition - _minScrollPosition) / (_maxScrollPosition - _minScrollPosition)))); thumb.visible = enabled; }; } protected function thumbPressHandler(_arg1:MouseEvent):void{ inDrag = true; thumbScrollOffset = (mouseY - thumb.y); thumb.mouseStateLocked = true; mouseChildren = false; stage.addEventListener(MouseEvent.MOUSE_MOVE, handleThumbDrag, false, 0, true); stage.addEventListener(MouseEvent.MOUSE_UP, thumbReleaseHandler, false, 0, true); } protected function thumbReleaseHandler(_arg1:MouseEvent):void{ inDrag = false; mouseChildren = true; thumb.mouseStateLocked = false; stage.removeEventListener(MouseEvent.MOUSE_MOVE, handleThumbDrag); stage.removeEventListener(MouseEvent.MOUSE_UP, thumbReleaseHandler); } public function set pageScrollSize(_arg1:Number):void{ if (_arg1 >= 0){ _pageScrollSize = _arg1; }; } protected function handleThumbDrag(_arg1:MouseEvent):void{ var _local2:Number; _local2 = Math.max(0, Math.min((track.height - thumb.height), ((mouseY - track.y) - thumbScrollOffset))); setScrollPosition((((_local2 / (track.height - thumb.height)) * (_maxScrollPosition - _minScrollPosition)) + _minScrollPosition)); } public function set direction(_arg1:String):void{ var _local2:Boolean; if (_direction == _arg1){ return; }; _direction = _arg1; if (isLivePreview){ return; }; setScaleY(1); _local2 = (_direction == ScrollBarDirection.HORIZONTAL); if (((_local2) && (componentInspectorSetting))){ if (rotation == 90){ return; }; setScaleX(-1); rotation = -90; }; if (!componentInspectorSetting){ if (((_local2) && ((rotation == 0)))){ rotation = -90; setScaleX(-1); } else { if (((!(_local2)) && ((rotation == -90)))){ rotation = 0; setScaleX(1); }; }; }; invalidate(InvalidationType.SIZE); } public function set lineScrollSize(_arg1:Number):void{ if (_arg1 > 0){ _lineScrollSize = _arg1; }; } override public function get height():Number{ return (((_direction)==ScrollBarDirection.HORIZONTAL) ? super.width : super.height); } protected function scrollPressHandler(_arg1:ComponentEvent):void{ var _local2:Number; var _local3:Number; _arg1.stopImmediatePropagation(); if (_arg1.currentTarget == upArrow){ setScrollPosition((_scrollPosition - _lineScrollSize)); } else { if (_arg1.currentTarget == downArrow){ setScrollPosition((_scrollPosition + _lineScrollSize)); } else { _local2 = (((track.mouseY / track.height) * (_maxScrollPosition - _minScrollPosition)) + _minScrollPosition); _local3 = ((pageScrollSize)==0) ? pageSize : pageScrollSize; if (_scrollPosition < _local2){ setScrollPosition(Math.min(_local2, (_scrollPosition + _local3))); } else { if (_scrollPosition > _local2){ setScrollPosition(Math.max(_local2, (_scrollPosition - _local3))); }; }; }; }; } public function get pageSize():Number{ return (_pageSize); } public function set maxScrollPosition(_arg1:Number):void{ setScrollProperties(_pageSize, _minScrollPosition, _arg1); } public function get scrollPosition():Number{ return (_scrollPosition); } override public function get enabled():Boolean{ return (super.enabled); } override protected function draw():void{ var _local1:Number; if (isInvalid(InvalidationType.SIZE)){ _local1 = super.height; downArrow.move(0, Math.max(upArrow.height, (_local1 - downArrow.height))); track.setSize(WIDTH, Math.max(0, (_local1 - (downArrow.height + upArrow.height)))); updateThumb(); }; if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ setStyles(); }; downArrow.drawNow(); upArrow.drawNow(); track.drawNow(); thumb.drawNow(); validate(); } override protected function configUI():void{ super.configUI(); track = new BaseButton(); track.move(0, 14); track.useHandCursor = false; track.autoRepeat = true; track.focusEnabled = false; addChild(track); thumb = new LabelButton(); thumb.label = ""; thumb.setSize(WIDTH, 15); thumb.move(0, 15); thumb.focusEnabled = false; addChild(thumb); downArrow = new BaseButton(); downArrow.setSize(WIDTH, 14); downArrow.autoRepeat = true; downArrow.focusEnabled = false; addChild(downArrow); upArrow = new BaseButton(); upArrow.setSize(WIDTH, 14); upArrow.move(0, 0); upArrow.autoRepeat = true; upArrow.focusEnabled = false; addChild(upArrow); upArrow.addEventListener(ComponentEvent.BUTTON_DOWN, scrollPressHandler, false, 0, true); downArrow.addEventListener(ComponentEvent.BUTTON_DOWN, scrollPressHandler, false, 0, true); track.addEventListener(ComponentEvent.BUTTON_DOWN, scrollPressHandler, false, 0, true); thumb.addEventListener(MouseEvent.MOUSE_DOWN, thumbPressHandler, false, 0, true); enabled = false; } public function get direction():String{ return (_direction); } public function get lineScrollSize():Number{ return (_lineScrollSize); } override public function setSize(_arg1:Number, _arg2:Number):void{ if (_direction == ScrollBarDirection.HORIZONTAL){ super.setSize(_arg2, _arg1); } else { super.setSize(_arg1, _arg2); }; } public function get maxScrollPosition():Number{ return (_maxScrollPosition); } override public function get width():Number{ return (((_direction)==ScrollBarDirection.HORIZONTAL) ? super.height : super.width); } protected function setStyles():void{ copyStylesToChild(downArrow, DOWN_ARROW_STYLES); copyStylesToChild(thumb, THUMB_STYLES); copyStylesToChild(track, TRACK_STYLES); copyStylesToChild(upArrow, UP_ARROW_STYLES); } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controlsSection 11//ScrollBarDirection (fl.controls.ScrollBarDirection) package fl.controls { public class ScrollBarDirection { public static const HORIZONTAL:String = "horizontal"; public static const VERTICAL:String = "vertical"; } }//package fl.controlsSection 12//ScrollPolicy (fl.controls.ScrollPolicy) package fl.controls { public class ScrollPolicy { public static const OFF:String = "off"; public static const ON:String = "on"; public static const AUTO:String = "auto"; } }//package fl.controlsSection 13//ComponentShim (fl.core.ComponentShim) package fl.core { import flash.display.*; public dynamic class ComponentShim extends MovieClip { } }//package fl.coreSection 14//InvalidationType (fl.core.InvalidationType) package fl.core { public class InvalidationType { public static const SIZE:String = "size"; public static const ALL:String = "all"; public static const DATA:String = "data"; public static const SCROLL:String = "scroll"; public static const STATE:String = "state"; public static const STYLES:String = "styles"; public static const SELECTED:String = "selected"; public static const RENDERER_STYLES:String = "rendererStyles"; } }//package fl.coreSection 15//UIComponent (fl.core.UIComponent) package fl.core { import flash.display.*; import flash.events.*; import fl.managers.*; import flash.utils.*; import flash.text.*; import fl.events.*; import flash.system.*; public class UIComponent extends Sprite { protected var _enabled:Boolean;// = true private var _mouseFocusEnabled:Boolean;// = true protected var startHeight:Number; protected var _height:Number; protected var _oldIMEMode:String;// = null protected var startWidth:Number; public var focusTarget:IFocusManagerComponent; protected var errorCaught:Boolean;// = false protected var uiFocusRect:DisplayObject; protected var _width:Number; public var version:String;// = "3.0.0.15" protected var isFocused:Boolean;// = false protected var callLaterMethods:Dictionary; private var _focusEnabled:Boolean;// = true private var tempText:TextField; protected var invalidateFlag:Boolean;// = false protected var _inspector:Boolean;// = false protected var sharedStyles:Object; protected var invalidHash:Object; protected var isLivePreview:Boolean;// = false protected var _imeMode:String;// = null protected var instanceStyles:Object; protected var _x:Number; protected var _y:Number; public static var inCallLaterPhase:Boolean = false; private static var defaultStyles:Object = {focusRectSkin:"focusRectSkin", focusRectPadding:2, textFormat:new TextFormat("_sans", 11, 0, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0), disabledTextFormat:new TextFormat("_sans", 11, 0x999999, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0), defaultTextFormat:new TextFormat("_sans", 11, 0, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0), defaultDisabledTextFormat:new TextFormat("_sans", 11, 0x999999, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0)}; public static var createAccessibilityImplementation:Function; private static var focusManagers:Dictionary = new Dictionary(false); public function UIComponent(){ version = "3.0.0.15"; isLivePreview = false; invalidateFlag = false; _enabled = true; isFocused = false; _focusEnabled = true; _mouseFocusEnabled = true; _imeMode = null; _oldIMEMode = null; errorCaught = false; _inspector = false; super(); instanceStyles = {}; sharedStyles = {}; invalidHash = {}; callLaterMethods = new Dictionary(); StyleManager.registerInstance(this); configUI(); invalidate(InvalidationType.ALL); tabEnabled = (this is IFocusManagerComponent); focusRect = false; if (tabEnabled){ addEventListener(FocusEvent.FOCUS_IN, focusInHandler); addEventListener(FocusEvent.FOCUS_OUT, focusOutHandler); addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler); addEventListener(KeyboardEvent.KEY_UP, keyUpHandler); }; initializeFocusManager(); addEventListener(Event.ENTER_FRAME, hookAccessibility, false, 0, true); } public function drawFocus(_arg1:Boolean):void{ var _local2:Number; isFocused = _arg1; if (((!((uiFocusRect == null))) && (contains(uiFocusRect)))){ removeChild(uiFocusRect); uiFocusRect = null; }; if (_arg1){ uiFocusRect = (getDisplayObjectInstance(getStyleValue("focusRectSkin")) as Sprite); if (uiFocusRect == null){ return; }; _local2 = Number(getStyleValue("focusRectPadding")); uiFocusRect.x = -(_local2); uiFocusRect.y = -(_local2); uiFocusRect.width = (width + (_local2 * 2)); uiFocusRect.height = (height + (_local2 * 2)); addChildAt(uiFocusRect, 0); }; } private function callLaterDispatcher(_arg1:Event):void{ var _local2:Dictionary; var _local3:Object; if (_arg1.type == Event.ADDED_TO_STAGE){ removeEventListener(Event.ADDED_TO_STAGE, callLaterDispatcher); stage.addEventListener(Event.RENDER, callLaterDispatcher, false, 0, true); stage.invalidate(); return; }; _arg1.target.removeEventListener(Event.RENDER, callLaterDispatcher); if (stage == null){ addEventListener(Event.ADDED_TO_STAGE, callLaterDispatcher, false, 0, true); return; }; inCallLaterPhase = true; _local2 = callLaterMethods; for (_local3 in _local2) { _local3(); delete _local2[_local3]; }; inCallLaterPhase = false; } private function addedHandler(_arg1:Event):void{ removeEventListener("addedToStage", addedHandler); initializeFocusManager(); } protected function getStyleValue(_arg1:String):Object{ return (((instanceStyles[_arg1])==null) ? sharedStyles[_arg1] : instanceStyles[_arg1]); } protected function isOurFocus(_arg1:DisplayObject):Boolean{ return ((_arg1 == this)); } override public function get scaleX():Number{ return ((width / startWidth)); } override public function get scaleY():Number{ return ((height / startHeight)); } override public function set height(_arg1:Number):void{ if (_height == _arg1){ return; }; setSize(width, _arg1); } protected function keyDownHandler(_arg1:KeyboardEvent):void{ } protected function focusInHandler(_arg1:FocusEvent):void{ var _local2:IFocusManager; if (isOurFocus((_arg1.target as DisplayObject))){ _local2 = focusManager; if (((_local2) && (_local2.showFocusIndicator))){ drawFocus(true); isFocused = true; }; }; } public function setStyle(_arg1:String, _arg2:Object):void{ if ((((instanceStyles[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; instanceStyles[_arg1] = _arg2; invalidate(InvalidationType.STYLES); } override public function get visible():Boolean{ return (super.visible); } public function get componentInspectorSetting():Boolean{ return (_inspector); } override public function get x():Number{ return ((isNaN(_x)) ? super.x : _x); } override public function get y():Number{ return ((isNaN(_y)) ? super.y : _y); } protected function setIMEMode(_arg1:Boolean){ var enabled = _arg1; if (_imeMode != null){ if (enabled){ IME.enabled = true; _oldIMEMode = IME.conversionMode; try { if (((!(errorCaught)) && (!((IME.conversionMode == IMEConversionMode.UNKNOWN))))){ IME.conversionMode = _imeMode; }; errorCaught = false; } catch(e:Error) { errorCaught = true; throw (new Error(("IME mode not supported: " + _imeMode))); }; } else { if (((!((IME.conversionMode == IMEConversionMode.UNKNOWN))) && (!((_oldIMEMode == IMEConversionMode.UNKNOWN))))){ IME.conversionMode = _oldIMEMode; }; IME.enabled = false; }; }; } public function set enabled(_arg1:Boolean):void{ if (_arg1 == _enabled){ return; }; _enabled = _arg1; invalidate(InvalidationType.STATE); } public function setSharedStyle(_arg1:String, _arg2:Object):void{ if ((((sharedStyles[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; sharedStyles[_arg1] = _arg2; if (instanceStyles[_arg1] == null){ invalidate(InvalidationType.STYLES); }; } protected function keyUpHandler(_arg1:KeyboardEvent):void{ } public function set focusEnabled(_arg1:Boolean):void{ _focusEnabled = _arg1; } override public function set scaleX(_arg1:Number):void{ setSize((startWidth * _arg1), height); } public function get mouseFocusEnabled():Boolean{ return (_mouseFocusEnabled); } override public function set scaleY(_arg1:Number):void{ setSize(width, (startHeight * _arg1)); } protected function getDisplayObjectInstance(_arg1:Object):DisplayObject{ var classDef:Object; var skin = _arg1; classDef = null; if ((skin is Class)){ return ((new (skin) as DisplayObject)); }; if ((skin is DisplayObject)){ (skin as DisplayObject).x = 0; (skin as DisplayObject).y = 0; return ((skin as DisplayObject)); }; try { classDef = getDefinitionByName(skin.toString()); } catch(e:Error) { try { classDef = (loaderInfo.applicationDomain.getDefinition(skin.toString()) as Object); } catch(e:Error) { }; }; if (classDef == null){ return (null); }; return ((new (classDef) as DisplayObject)); } protected function copyStylesToChild(_arg1:UIComponent, _arg2:Object):void{ var _local3:String; for (_local3 in _arg2) { _arg1.setStyle(_local3, getStyleValue(_arg2[_local3])); }; } protected function beforeComponentParameters():void{ } protected function callLater(_arg1:Function):void{ if (inCallLaterPhase){ return; }; callLaterMethods[_arg1] = true; if (stage != null){ stage.addEventListener(Event.RENDER, callLaterDispatcher, false, 0, true); stage.invalidate(); } else { addEventListener(Event.ADDED_TO_STAGE, callLaterDispatcher, false, 0, true); }; } protected function createFocusManager():void{ if (focusManagers[stage] == null){ focusManagers[stage] = new FocusManager(stage); }; } override public function set visible(_arg1:Boolean):void{ var _local2:String; if (super.visible == _arg1){ return; }; super.visible = _arg1; _local2 = (_arg1) ? ComponentEvent.SHOW : ComponentEvent.HIDE; dispatchEvent(new ComponentEvent(_local2, true)); } protected function hookAccessibility(_arg1:Event):void{ removeEventListener(Event.ENTER_FRAME, hookAccessibility); initializeAccessibility(); } public function set componentInspectorSetting(_arg1:Boolean):void{ _inspector = _arg1; if (_inspector){ beforeComponentParameters(); } else { afterComponentParameters(); }; } override public function set x(_arg1:Number):void{ move(_arg1, _y); } public function drawNow():void{ draw(); } override public function set y(_arg1:Number):void{ move(_x, _arg1); } protected function checkLivePreview():Boolean{ var className:String; if (parent == null){ return (false); }; try { className = getQualifiedClassName(parent); } catch(e:Error) { }; return ((className == "fl.livepreview::LivePreviewParent")); } protected function focusOutHandler(_arg1:FocusEvent):void{ if (isOurFocus((_arg1.target as DisplayObject))){ drawFocus(false); isFocused = false; }; } public function set mouseFocusEnabled(_arg1:Boolean):void{ _mouseFocusEnabled = _arg1; } public function getFocus():InteractiveObject{ if (stage){ return (stage.focus); }; return (null); } protected function validate():void{ invalidHash = {}; } override public function get height():Number{ return (_height); } public function invalidate(_arg1:String="all", _arg2:Boolean=true):void{ invalidHash[_arg1] = true; if (_arg2){ this.callLater(draw); }; } public function get enabled():Boolean{ return (_enabled); } protected function getScaleX():Number{ return (super.scaleX); } protected function getScaleY():Number{ return (super.scaleY); } public function get focusEnabled():Boolean{ return (_focusEnabled); } protected function afterComponentParameters():void{ } protected function draw():void{ if (isInvalid(InvalidationType.SIZE, InvalidationType.STYLES)){ if (((isFocused) && (focusManager.showFocusIndicator))){ drawFocus(true); }; }; validate(); } protected function configUI():void{ var _local1:Number; var _local2:Number; var _local3:Number; isLivePreview = checkLivePreview(); _local1 = rotation; rotation = 0; _local2 = super.width; _local3 = super.height; var _local4 = 1; super.scaleY = _local4; super.scaleX = _local4; setSize(_local2, _local3); move(super.x, super.y); rotation = _local1; startWidth = _local2; startHeight = _local3; if (numChildren > 0){ removeChildAt(0); }; } protected function setScaleX(_arg1:Number):void{ super.scaleX = _arg1; } protected function setScaleY(_arg1:Number):void{ super.scaleY = _arg1; } private function initializeFocusManager():void{ if (stage == null){ addEventListener(Event.ADDED_TO_STAGE, addedHandler, false, 0, true); } else { createFocusManager(); }; } public function set focusManager(_arg1:IFocusManager):void{ UIComponent.focusManagers[this] = _arg1; } public function clearStyle(_arg1:String):void{ setStyle(_arg1, null); } protected function isInvalid(_arg1:String, ... _args):Boolean{ if (((invalidHash[_arg1]) || (invalidHash[InvalidationType.ALL]))){ return (true); }; while (_args.length > 0) { if (invalidHash[_args.pop()]){ return (true); }; }; return (false); } public function setSize(_arg1:Number, _arg2:Number):void{ _width = _arg1; _height = _arg2; invalidate(InvalidationType.SIZE); dispatchEvent(new ComponentEvent(ComponentEvent.RESIZE, false)); } override public function set width(_arg1:Number):void{ if (_width == _arg1){ return; }; setSize(_arg1, height); } public function setFocus():void{ if (stage){ stage.focus = this; }; } protected function initializeAccessibility():void{ if (UIComponent.createAccessibilityImplementation != null){ UIComponent.createAccessibilityImplementation(this); }; } public function get focusManager():IFocusManager{ var _local1:DisplayObject; _local1 = this; while (_local1) { if (UIComponent.focusManagers[_local1] != null){ return (IFocusManager(UIComponent.focusManagers[_local1])); }; _local1 = _local1.parent; }; return (null); } override public function get width():Number{ return (_width); } public function move(_arg1:Number, _arg2:Number):void{ _x = _arg1; _y = _arg2; super.x = Math.round(_arg1); super.y = Math.round(_arg2); dispatchEvent(new ComponentEvent(ComponentEvent.MOVE)); } public function validateNow():void{ invalidate(InvalidationType.ALL, false); draw(); } public function getStyle(_arg1:String):Object{ return (instanceStyles[_arg1]); } public static function getStyleDefinition():Object{ return (defaultStyles); } public static function mergeStyles(... _args):Object{ var _local2:Object; var _local3:uint; var _local4:uint; var _local5:Object; var _local6:String; _local2 = {}; _local3 = _args.length; _local4 = 0; while (_local4 < _local3) { _local5 = _args[_local4]; for (_local6 in _local5) { if (_local2[_local6] != null){ } else { _local2[_local6] = _args[_local4][_local6]; }; }; _local4++; }; return (_local2); } } }//package fl.coreSection 16//ComponentEvent (fl.events.ComponentEvent) package fl.events { import flash.events.*; public class ComponentEvent extends Event { public static const HIDE:String = "hide"; public static const BUTTON_DOWN:String = "buttonDown"; public static const MOVE:String = "move"; public static const RESIZE:String = "resize"; public static const ENTER:String = "enter"; public static const LABEL_CHANGE:String = "labelChange"; public static const SHOW:String = "show"; public function ComponentEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false){ super(_arg1, _arg2, _arg3); } override public function toString():String{ return (formatToString("ComponentEvent", "type", "bubbles", "cancelable")); } override public function clone():Event{ return (new ComponentEvent(type, bubbles, cancelable)); } } }//package fl.eventsSection 17//ScrollEvent (fl.events.ScrollEvent) package fl.events { import flash.events.*; public class ScrollEvent extends Event { private var _position:Number; private var _direction:String; private var _delta:Number; public static const SCROLL:String = "scroll"; public function ScrollEvent(_arg1:String, _arg2:Number, _arg3:Number){ super(ScrollEvent.SCROLL, false, false); _direction = _arg1; _delta = _arg2; _position = _arg3; } override public function clone():Event{ return (new ScrollEvent(_direction, _delta, _position)); } public function get position():Number{ return (_position); } override public function toString():String{ return (formatToString("ScrollEvent", "type", "bubbles", "cancelable", "direction", "delta", "position")); } public function get delta():Number{ return (_delta); } public function get direction():String{ return (_direction); } } }//package fl.eventsSection 18//FocusManager (fl.managers.FocusManager) package fl.managers { import fl.controls.*; import flash.display.*; import fl.core.*; import flash.events.*; import flash.utils.*; import flash.text.*; import flash.ui.*; public class FocusManager implements IFocusManager { private var focusableObjects:Dictionary; private var _showFocusIndicator:Boolean;// = true private var defButton:Button; private var focusableCandidates:Array; private var _form:DisplayObjectContainer; private var _defaultButtonEnabled:Boolean;// = true private var activated:Boolean;// = false private var _defaultButton:Button; private var calculateCandidates:Boolean;// = true private var lastFocus:InteractiveObject; private var lastAction:String; public function FocusManager(_arg1:DisplayObjectContainer){ activated = false; calculateCandidates = true; _showFocusIndicator = true; _defaultButtonEnabled = true; super(); focusableObjects = new Dictionary(true); if (_arg1 != null){ _form = _arg1; addFocusables(DisplayObject(_arg1)); _arg1.addEventListener(Event.ADDED, addedHandler); _arg1.addEventListener(Event.REMOVED, removedHandler); activate(); }; } public function get showFocusIndicator():Boolean{ return (_showFocusIndicator); } private function getIndexOfNextObject(_arg1:int, _arg2:Boolean, _arg3:Boolean, _arg4:String):int{ var _local5:int; var _local6:int; var _local7:DisplayObject; var _local8:IFocusManagerGroup; var _local9:int; var _local10:DisplayObject; var _local11:IFocusManagerGroup; _local5 = focusableCandidates.length; _local6 = _arg1; while (true) { if (_arg2){ _arg1--; } else { _arg1++; }; if (_arg3){ if (((_arg2) && ((_arg1 < 0)))){ break; }; if (((!(_arg2)) && ((_arg1 == _local5)))){ break; }; } else { _arg1 = ((_arg1 + _local5) % _local5); if (_local6 == _arg1){ break; }; }; if (isValidFocusCandidate(focusableCandidates[_arg1], _arg4)){ _local7 = DisplayObject(findFocusManagerComponent(focusableCandidates[_arg1])); if ((_local7 is IFocusManagerGroup)){ _local8 = IFocusManagerGroup(_local7); _local9 = 0; while (_local9 < focusableCandidates.length) { _local10 = focusableCandidates[_local9]; if ((_local10 is IFocusManagerGroup)){ _local11 = IFocusManagerGroup(_local10); if ((((_local11.groupName == _local8.groupName)) && (_local11.selected))){ _arg1 = _local9; break; }; }; _local9++; }; }; return (_arg1); }; }; return (_arg1); } public function set form(_arg1:DisplayObjectContainer):void{ _form = _arg1; } private function addFocusables(_arg1:DisplayObject, _arg2:Boolean=false):void{ var focusable:IFocusManagerComponent; var io:InteractiveObject; var doc:DisplayObjectContainer; var i:int; var child:DisplayObject; var o = _arg1; var skipTopLevel = _arg2; if (!skipTopLevel){ if ((o is IFocusManagerComponent)){ focusable = IFocusManagerComponent(o); if (focusable.focusEnabled){ if (((focusable.tabEnabled) && (isTabVisible(o)))){ focusableObjects[o] = true; calculateCandidates = true; }; o.addEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); o.addEventListener(Event.TAB_INDEX_CHANGE, tabIndexChangeHandler); }; } else { if ((o is InteractiveObject)){ io = (o as InteractiveObject); if (((((io) && (io.tabEnabled))) && ((findFocusManagerComponent(io) == io)))){ focusableObjects[io] = true; calculateCandidates = true; }; io.addEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); io.addEventListener(Event.TAB_INDEX_CHANGE, tabIndexChangeHandler); }; }; }; if ((o is DisplayObjectContainer)){ doc = DisplayObjectContainer(o); o.addEventListener(Event.TAB_CHILDREN_CHANGE, tabChildrenChangeHandler); if ((((((doc is Stage)) || ((doc.parent is Stage)))) || (doc.tabChildren))){ i = 0; while (i < doc.numChildren) { try { child = doc.getChildAt(i); if (child != null){ addFocusables(doc.getChildAt(i)); }; } catch(error:SecurityError) { }; i = (i + 1); }; }; }; } private function getChildIndex(_arg1:DisplayObjectContainer, _arg2:DisplayObject):int{ return (_arg1.getChildIndex(_arg2)); } private function mouseFocusChangeHandler(_arg1:FocusEvent):void{ if ((_arg1.relatedObject is TextField)){ return; }; _arg1.preventDefault(); } private function focusOutHandler(_arg1:FocusEvent):void{ var _local2:InteractiveObject; _local2 = (_arg1.target as InteractiveObject); } private function isValidFocusCandidate(_arg1:DisplayObject, _arg2:String):Boolean{ var _local3:IFocusManagerGroup; if (!isEnabledAndVisible(_arg1)){ return (false); }; if ((_arg1 is IFocusManagerGroup)){ _local3 = IFocusManagerGroup(_arg1); if (_arg2 == _local3.groupName){ return (false); }; }; return (true); } public function findFocusManagerComponent(_arg1:InteractiveObject):InteractiveObject{ var _local2:InteractiveObject; _local2 = _arg1; while (_arg1) { if ((((_arg1 is IFocusManagerComponent)) && (IFocusManagerComponent(_arg1).focusEnabled))){ return (_arg1); }; _arg1 = _arg1.parent; }; return (_local2); } private function sortFocusableObjectsTabIndex():void{ var _local1:Object; var _local2:InteractiveObject; focusableCandidates = []; for (_local1 in focusableObjects) { _local2 = InteractiveObject(_local1); if (((_local2.tabIndex) && (!(isNaN(Number(_local2.tabIndex)))))){ focusableCandidates.push(_local2); }; }; focusableCandidates.sort(sortByTabIndex); } private function removeFocusables(_arg1:DisplayObject):void{ var _local2:Object; var _local3:DisplayObject; if ((_arg1 is DisplayObjectContainer)){ _arg1.removeEventListener(Event.TAB_CHILDREN_CHANGE, tabChildrenChangeHandler); _arg1.removeEventListener(Event.TAB_INDEX_CHANGE, tabIndexChangeHandler); for (_local2 in focusableObjects) { _local3 = DisplayObject(_local2); if (DisplayObjectContainer(_arg1).contains(_local3)){ if (_local3 == lastFocus){ lastFocus = null; }; _local3.removeEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); delete focusableObjects[_local2]; calculateCandidates = true; }; }; }; } private function addedHandler(_arg1:Event):void{ var _local2:DisplayObject; _local2 = DisplayObject(_arg1.target); if (_local2.stage){ addFocusables(DisplayObject(_arg1.target)); }; } private function getTopLevelFocusTarget(_arg1:InteractiveObject):InteractiveObject{ while (_arg1 != InteractiveObject(form)) { if ((((((((_arg1 is IFocusManagerComponent)) && (IFocusManagerComponent(_arg1).focusEnabled))) && (IFocusManagerComponent(_arg1).mouseFocusEnabled))) && (UIComponent(_arg1).enabled))){ return (_arg1); }; _arg1 = _arg1.parent; if (_arg1 == null){ break; }; }; return (null); } private function tabChildrenChangeHandler(_arg1:Event):void{ var _local2:DisplayObjectContainer; if (_arg1.target != _arg1.currentTarget){ return; }; calculateCandidates = true; _local2 = DisplayObjectContainer(_arg1.target); if (_local2.tabChildren){ addFocusables(_local2, true); } else { removeFocusables(_local2); }; } public function sendDefaultButtonEvent():void{ defButton.dispatchEvent(new MouseEvent(MouseEvent.CLICK)); } public function getFocus():InteractiveObject{ var _local1:InteractiveObject; _local1 = form.stage.focus; return (findFocusManagerComponent(_local1)); } private function isEnabledAndVisible(_arg1:DisplayObject):Boolean{ var _local2:DisplayObjectContainer; var _local3:TextField; var _local4:SimpleButton; _local2 = DisplayObject(form).parent; while (_arg1 != _local2) { if ((_arg1 is UIComponent)){ if (!UIComponent(_arg1).enabled){ return (false); }; } else { if ((_arg1 is TextField)){ _local3 = TextField(_arg1); if ((((_local3.type == TextFieldType.DYNAMIC)) || (!(_local3.selectable)))){ return (false); }; } else { if ((_arg1 is SimpleButton)){ _local4 = SimpleButton(_arg1); if (!_local4.enabled){ return (false); }; }; }; }; if (!_arg1.visible){ return (false); }; _arg1 = _arg1.parent; }; return (true); } public function set defaultButton(_arg1:Button):void{ var _local2:Button; _local2 = (_arg1) ? Button(_arg1) : null; if (_local2 != _defaultButton){ if (_defaultButton){ _defaultButton.emphasized = false; }; if (defButton){ defButton.emphasized = false; }; _defaultButton = _local2; defButton = _local2; if (_local2){ _local2.emphasized = true; }; }; } private function deactivateHandler(_arg1:Event):void{ var _local2:InteractiveObject; _local2 = InteractiveObject(_arg1.target); } public function setFocus(_arg1:InteractiveObject):void{ if ((_arg1 is IFocusManagerComponent)){ IFocusManagerComponent(_arg1).setFocus(); } else { form.stage.focus = _arg1; }; } private function setFocusToNextObject(_arg1:FocusEvent):void{ var _local2:InteractiveObject; if (!hasFocusableObjects()){ return; }; _local2 = getNextFocusManagerComponent(_arg1.shiftKey); if (_local2){ setFocus(_local2); }; } private function hasFocusableObjects():Boolean{ var _local1:Object; for (_local1 in focusableObjects) { return (true); }; return (false); } private function tabIndexChangeHandler(_arg1:Event):void{ calculateCandidates = true; } private function sortFocusableObjects():void{ var _local1:Object; var _local2:InteractiveObject; focusableCandidates = []; for (_local1 in focusableObjects) { _local2 = InteractiveObject(_local1); if (((((_local2.tabIndex) && (!(isNaN(Number(_local2.tabIndex)))))) && ((_local2.tabIndex > 0)))){ sortFocusableObjectsTabIndex(); return; }; focusableCandidates.push(_local2); }; focusableCandidates.sort(sortByDepth); } private function keyFocusChangeHandler(_arg1:FocusEvent):void{ showFocusIndicator = true; if ((((((_arg1.keyCode == Keyboard.TAB)) || ((_arg1.keyCode == 0)))) && (!(_arg1.isDefaultPrevented())))){ setFocusToNextObject(_arg1); _arg1.preventDefault(); }; } private function getIndexOfFocusedObject(_arg1:DisplayObject):int{ var _local2:int; var _local3:int; _local2 = focusableCandidates.length; _local3 = 0; _local3 = 0; while (_local3 < _local2) { if (focusableCandidates[_local3] == _arg1){ return (_local3); }; _local3++; }; return (-1); } public function hideFocus():void{ } private function removedHandler(_arg1:Event):void{ var _local2:int; var _local3:DisplayObject; var _local4:InteractiveObject; _local3 = DisplayObject(_arg1.target); if ((((_local3 is IFocusManagerComponent)) && ((focusableObjects[_local3] == true)))){ if (_local3 == lastFocus){ IFocusManagerComponent(lastFocus).drawFocus(false); lastFocus = null; }; _local3.removeEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); delete focusableObjects[_local3]; calculateCandidates = true; } else { if ((((_local3 is InteractiveObject)) && ((focusableObjects[_local3] == true)))){ _local4 = (_local3 as InteractiveObject); if (_local4){ if (_local4 == lastFocus){ lastFocus = null; }; delete focusableObjects[_local4]; calculateCandidates = true; }; _local3.addEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); }; }; removeFocusables(_local3); } private function sortByDepth(_arg1:InteractiveObject, _arg2:InteractiveObject):Number{ var _local3:String; var _local4:String; var _local5:int; var _local6:String; var _local7:String; var _local8:String; var _local9:DisplayObject; var _local10:DisplayObject; _local3 = ""; _local4 = ""; _local8 = "0000"; _local9 = DisplayObject(_arg1); _local10 = DisplayObject(_arg2); while (((!((_local9 == DisplayObject(form)))) && (_local9.parent))) { _local5 = getChildIndex(_local9.parent, _local9); _local6 = _local5.toString(16); if (_local6.length < 4){ _local7 = (_local8.substring(0, (4 - _local6.length)) + _local6); }; _local3 = (_local7 + _local3); _local9 = _local9.parent; }; while (((!((_local10 == DisplayObject(form)))) && (_local10.parent))) { _local5 = getChildIndex(_local10.parent, _local10); _local6 = _local5.toString(16); if (_local6.length < 4){ _local7 = (_local8.substring(0, (4 - _local6.length)) + _local6); }; _local4 = (_local7 + _local4); _local10 = _local10.parent; }; return (((_local3 > _local4)) ? 1 : ((_local3 < _local4)) ? -1 : 0); } public function get defaultButton():Button{ return (_defaultButton); } private function activateHandler(_arg1:Event):void{ var _local2:InteractiveObject; _local2 = InteractiveObject(_arg1.target); if (lastFocus){ if ((lastFocus is IFocusManagerComponent)){ IFocusManagerComponent(lastFocus).setFocus(); } else { form.stage.focus = lastFocus; }; }; lastAction = "ACTIVATE"; } public function showFocus():void{ } public function set defaultButtonEnabled(_arg1:Boolean):void{ _defaultButtonEnabled = _arg1; } public function getNextFocusManagerComponent(_arg1:Boolean=false):InteractiveObject{ var _local2:DisplayObject; var _local3:String; var _local4:int; var _local5:Boolean; var _local6:int; var _local7:int; var _local8:IFocusManagerGroup; if (!hasFocusableObjects()){ return (null); }; if (calculateCandidates){ sortFocusableObjects(); calculateCandidates = false; }; _local2 = form.stage.focus; _local2 = DisplayObject(findFocusManagerComponent(InteractiveObject(_local2))); _local3 = ""; if ((_local2 is IFocusManagerGroup)){ _local8 = IFocusManagerGroup(_local2); _local3 = _local8.groupName; }; _local4 = getIndexOfFocusedObject(_local2); _local5 = false; _local6 = _local4; if (_local4 == -1){ if (_arg1){ _local4 = focusableCandidates.length; }; _local5 = true; }; _local7 = getIndexOfNextObject(_local4, _arg1, _local5, _local3); return (findFocusManagerComponent(focusableCandidates[_local7])); } private function mouseDownHandler(_arg1:MouseEvent):void{ var _local2:InteractiveObject; if (_arg1.isDefaultPrevented()){ return; }; _local2 = getTopLevelFocusTarget(InteractiveObject(_arg1.target)); if (!_local2){ return; }; showFocusIndicator = false; if (((((!((_local2 == lastFocus))) || ((lastAction == "ACTIVATE")))) && (!((_local2 is TextField))))){ setFocus(_local2); }; lastAction = "MOUSEDOWN"; } private function isTabVisible(_arg1:DisplayObject):Boolean{ var _local2:DisplayObjectContainer; _local2 = _arg1.parent; while (((((_local2) && (!((_local2 is Stage))))) && (!(((_local2.parent) && ((_local2.parent is Stage))))))) { if (!_local2.tabChildren){ return (false); }; _local2 = _local2.parent; }; return (true); } public function get nextTabIndex():int{ return (0); } private function keyDownHandler(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == Keyboard.TAB){ lastAction = "KEY"; if (calculateCandidates){ sortFocusableObjects(); calculateCandidates = false; }; }; if (((((((defaultButtonEnabled) && ((_arg1.keyCode == Keyboard.ENTER)))) && (defaultButton))) && (defButton.enabled))){ sendDefaultButtonEvent(); }; } private function focusInHandler(_arg1:FocusEvent):void{ var _local2:InteractiveObject; var _local3:Button; _local2 = InteractiveObject(_arg1.target); if (form.contains(_local2)){ lastFocus = findFocusManagerComponent(InteractiveObject(_local2)); if ((lastFocus is Button)){ _local3 = Button(lastFocus); if (defButton){ defButton.emphasized = false; defButton = _local3; _local3.emphasized = true; }; } else { if (((defButton) && (!((defButton == _defaultButton))))){ defButton.emphasized = false; defButton = _defaultButton; _defaultButton.emphasized = true; }; }; }; } private function tabEnabledChangeHandler(_arg1:Event):void{ var _local2:InteractiveObject; var _local3:Boolean; calculateCandidates = true; _local2 = InteractiveObject(_arg1.target); _local3 = (focusableObjects[_local2] == true); if (_local2.tabEnabled){ if (((!(_local3)) && (isTabVisible(_local2)))){ if (!(_local2 is IFocusManagerComponent)){ _local2.focusRect = false; }; focusableObjects[_local2] = true; }; } else { if (_local3){ delete focusableObjects[_local2]; }; }; } public function set showFocusIndicator(_arg1:Boolean):void{ _showFocusIndicator = _arg1; } public function get form():DisplayObjectContainer{ return (_form); } private function sortByTabIndex(_arg1:InteractiveObject, _arg2:InteractiveObject):int{ return (((_arg1.tabIndex > _arg2.tabIndex)) ? 1 : ((_arg1.tabIndex < _arg2.tabIndex)) ? -1 : sortByDepth(_arg1, _arg2)); } public function activate():void{ if (activated){ return; }; form.stage.addEventListener(FocusEvent.MOUSE_FOCUS_CHANGE, mouseFocusChangeHandler, false, 0, true); form.stage.addEventListener(FocusEvent.KEY_FOCUS_CHANGE, keyFocusChangeHandler, false, 0, true); form.addEventListener(FocusEvent.FOCUS_IN, focusInHandler, true); form.addEventListener(FocusEvent.FOCUS_OUT, focusOutHandler, true); form.stage.addEventListener(Event.ACTIVATE, activateHandler, false, 0, true); form.stage.addEventListener(Event.DEACTIVATE, deactivateHandler, false, 0, true); form.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler); form.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler, true); activated = true; if (lastFocus){ setFocus(lastFocus); }; } public function deactivate():void{ form.stage.removeEventListener(FocusEvent.MOUSE_FOCUS_CHANGE, mouseFocusChangeHandler); form.stage.removeEventListener(FocusEvent.KEY_FOCUS_CHANGE, keyFocusChangeHandler); form.removeEventListener(FocusEvent.FOCUS_IN, focusInHandler, true); form.removeEventListener(FocusEvent.FOCUS_OUT, focusOutHandler, true); form.stage.removeEventListener(Event.ACTIVATE, activateHandler); form.stage.removeEventListener(Event.DEACTIVATE, deactivateHandler); form.removeEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler); form.removeEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler, true); activated = false; } public function get defaultButtonEnabled():Boolean{ return (_defaultButtonEnabled); } } }//package fl.managersSection 19//IFocusManager (fl.managers.IFocusManager) package fl.managers { import fl.controls.*; import flash.display.*; public interface IFocusManager { function getFocus():InteractiveObject; function deactivate():void; function set defaultButton(_arg1:Button):void; function set showFocusIndicator(_arg1:Boolean):void; function get defaultButtonEnabled():Boolean; function get nextTabIndex():int; function get defaultButton():Button; function get showFocusIndicator():Boolean; function setFocus(_arg1:InteractiveObject):void; function activate():void; function showFocus():void; function set defaultButtonEnabled(_arg1:Boolean):void; function hideFocus():void; function findFocusManagerComponent(_arg1:InteractiveObject):InteractiveObject; function getNextFocusManagerComponent(_arg1:Boolean=false):InteractiveObject; } }//package fl.managersSection 20//IFocusManagerComponent (fl.managers.IFocusManagerComponent) package fl.managers { public interface IFocusManagerComponent { function set focusEnabled(_arg1:Boolean):void; function drawFocus(_arg1:Boolean):void; function setFocus():void; function get focusEnabled():Boolean; function get tabEnabled():Boolean; function get tabIndex():int; function get mouseFocusEnabled():Boolean; } }//package fl.managersSection 21//IFocusManagerGroup (fl.managers.IFocusManagerGroup) package fl.managers { public interface IFocusManagerGroup { function set groupName(_arg1:String):void; function set selected(_arg1:Boolean):void; function get groupName():String; function get selected():Boolean; } }//package fl.managersSection 22//StyleManager (fl.managers.StyleManager) package fl.managers { import fl.core.*; import flash.utils.*; import flash.text.*; public class StyleManager { private var globalStyles:Object; private var classToDefaultStylesDict:Dictionary; private var styleToClassesHash:Object; private var classToStylesDict:Dictionary; private var classToInstancesDict:Dictionary; private static var _instance:StyleManager; public function StyleManager(){ styleToClassesHash = {}; classToInstancesDict = new Dictionary(true); classToStylesDict = new Dictionary(true); classToDefaultStylesDict = new Dictionary(true); globalStyles = UIComponent.getStyleDefinition(); } public static function clearComponentStyle(_arg1:Object, _arg2:String):void{ var _local3:Class; var _local4:Object; _local3 = getClassDef(_arg1); _local4 = getInstance().classToStylesDict[_local3]; if (((!((_local4 == null))) && (!((_local4[_arg2] == null))))){ delete _local4[_arg2]; invalidateComponentStyle(_local3, _arg2); }; } private static function getClassDef(_arg1:Object):Class{ var component = _arg1; if ((component is Class)){ return ((component as Class)); }; try { return ((getDefinitionByName(getQualifiedClassName(component)) as Class)); } catch(e:Error) { if ((component is UIComponent)){ try { return ((component.loaderInfo.applicationDomain.getDefinition(getQualifiedClassName(component)) as Class)); } catch(e:Error) { }; }; }; return (null); } public static function clearStyle(_arg1:String):void{ setStyle(_arg1, null); } public static function setComponentStyle(_arg1:Object, _arg2:String, _arg3:Object):void{ var _local4:Class; var _local5:Object; _local4 = getClassDef(_arg1); _local5 = getInstance().classToStylesDict[_local4]; if (_local5 == null){ _local5 = (getInstance().classToStylesDict[_local4] = {}); }; if (_local5 == _arg3){ return; }; _local5[_arg2] = _arg3; invalidateComponentStyle(_local4, _arg2); } private static function setSharedStyles(_arg1:UIComponent):void{ var _local2:StyleManager; var _local3:Class; var _local4:Object; var _local5:String; _local2 = getInstance(); _local3 = getClassDef(_arg1); _local4 = _local2.classToDefaultStylesDict[_local3]; for (_local5 in _local4) { _arg1.setSharedStyle(_local5, getSharedStyle(_arg1, _local5)); }; } public static function getComponentStyle(_arg1:Object, _arg2:String):Object{ var _local3:Class; var _local4:Object; _local3 = getClassDef(_arg1); _local4 = getInstance().classToStylesDict[_local3]; return (((_local4)==null) ? null : _local4[_arg2]); } private static function getInstance(){ if (_instance == null){ _instance = new (StyleManager); }; return (_instance); } private static function invalidateComponentStyle(_arg1:Class, _arg2:String):void{ var _local3:Dictionary; var _local4:Object; var _local5:UIComponent; _local3 = getInstance().classToInstancesDict[_arg1]; if (_local3 == null){ return; }; for (_local4 in _local3) { _local5 = (_local4 as UIComponent); if (_local5 == null){ } else { _local5.setSharedStyle(_arg2, getSharedStyle(_local5, _arg2)); }; }; } private static function invalidateStyle(_arg1:String):void{ var _local2:Dictionary; var _local3:Object; _local2 = getInstance().styleToClassesHash[_arg1]; if (_local2 == null){ return; }; for (_local3 in _local2) { invalidateComponentStyle(Class(_local3), _arg1); }; } public static function registerInstance(_arg1:UIComponent):void{ var inst:StyleManager; var classDef:Class; var target:Class; var defaultStyles:Object; var styleToClasses:Object; var n:String; var instance = _arg1; inst = getInstance(); classDef = getClassDef(instance); if (classDef == null){ return; }; if (inst.classToInstancesDict[classDef] == null){ inst.classToInstancesDict[classDef] = new Dictionary(true); target = classDef; while (defaultStyles == null) { if (target["getStyleDefinition"] != null){ defaultStyles = target["getStyleDefinition"](); break; }; try { target = (instance.loaderInfo.applicationDomain.getDefinition(getQualifiedSuperclassName(target)) as Class); } catch(err:Error) { try { target = (getDefinitionByName(getQualifiedSuperclassName(target)) as Class); } catch(e:Error) { defaultStyles = UIComponent.getStyleDefinition(); break; }; }; }; styleToClasses = inst.styleToClassesHash; for (n in defaultStyles) { if (styleToClasses[n] == null){ styleToClasses[n] = new Dictionary(true); }; styleToClasses[n][classDef] = true; }; inst.classToDefaultStylesDict[classDef] = defaultStyles; inst.classToStylesDict[classDef] = {}; }; inst.classToInstancesDict[classDef][instance] = true; setSharedStyles(instance); } public static function getStyle(_arg1:String):Object{ return (getInstance().globalStyles[_arg1]); } private static function getSharedStyle(_arg1:UIComponent, _arg2:String):Object{ var _local3:Class; var _local4:StyleManager; var _local5:Object; _local3 = getClassDef(_arg1); _local4 = getInstance(); _local5 = _local4.classToStylesDict[_local3][_arg2]; if (_local5 != null){ return (_local5); }; _local5 = _local4.globalStyles[_arg2]; if (_local5 != null){ return (_local5); }; return (_local4.classToDefaultStylesDict[_local3][_arg2]); } public static function setStyle(_arg1:String, _arg2:Object):void{ var _local3:Object; _local3 = getInstance().globalStyles; if ((((_local3[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; _local3[_arg1] = _arg2; invalidateStyle(_arg1); } } }//package fl.managersSection 23//_toolbar_25 (print2flash_fla._toolbar_25) package print2flash_fla { import flash.display.*; import flash.accessibility.*; public dynamic class _toolbar_25 extends MovieClip { public var ScaleTextMovie:MovieClip; public var nextpage:def_nextpage; public var newwindow:def_newwindow; public var moveMode:def_moveMode; public var scaleWidth:def_scaleWidth; public var selMode:def_selMode; public var logo:MovieClip; public var print:def_print; public var ZoomSlider:Slider; public var fullscreen:def_fullscreen; public var PageNoMovie:MovieClip; public var help:def_help; public var prevpage:def_prevpage; public var forward:def_forward; public var more:def_more; public var searchbut:MovieClip; public var rotate:def_rotate; public var searchPatternmc:MovieClip; public var back:def_back; public var toolbarbgr:MovieClip; public var scalePage:def_scalePage; public function _toolbar_25(){ __setTab_toolbarbgr__toolbar_bgr_0(); __setTab_searchbut__toolbar_icons_0(); __setTab_print__toolbar_icons_0(); __setTab_ScaleTextMovie__toolbar_icons_0(); __setTab_PageNoMovie__toolbar_icons_0(); __setTab_moveMode__toolbar_icons_0(); __setTab_scaleWidth__toolbar_icons_0(); __setTab_scalePage__toolbar_icons_0(); __setTab_prevpage__toolbar_icons_0(); __setTab_rotate__toolbar_icons_0(); __setTab_help__toolbar_icons_0(); __setTab_newwindow__toolbar_icons_0(); __setTab_selMode__toolbar_icons_0(); __setTab_more__toolbar_icons_0(); __setTab_nextpage__toolbar_icons_0(); __setTab_back__toolbar_icons_0(); __setTab_forward__toolbar_icons_0(); __setTab_ZoomSlider__toolbar_icons_0(); __setTab_searchPatternmc__toolbar_icons_0(); __setTab_logo__toolbar_icons_0(); __setAcc_print__toolbar_icons_0(); __setAcc_prevpage__toolbar_icons_0(); __setAcc_more__toolbar_icons_0(); __setAcc_nextpage__toolbar_icons_0(); __setAcc_ZoomSlider__toolbar_icons_0(); __setAcc_logo__toolbar_icons_0(); } function __setAcc_prevpage__toolbar_icons_0(){ prevpage.accessibilityProperties = new AccessibilityProperties(); prevpage.accessibilityProperties.shortcut = "Control+Y"; } function __setTab_moveMode__toolbar_icons_0(){ moveMode.tabIndex = 0; } function __setTab_help__toolbar_icons_0(){ help.tabIndex = 0; } function __setTab_forward__toolbar_icons_0(){ forward.tabIndex = 0; } function __setTab_prevpage__toolbar_icons_0(){ prevpage.tabIndex = 0; } function __setTab_back__toolbar_icons_0(){ back.tabIndex = 1; } function __setTab_newwindow__toolbar_icons_0(){ newwindow.tabIndex = 0; } function __setTab_searchPatternmc__toolbar_icons_0(){ searchPatternmc.tabIndex = 0; } function __setTab_print__toolbar_icons_0(){ print.tabIndex = 0; } function __setTab_rotate__toolbar_icons_0(){ rotate.tabIndex = 0; } function __setTab_selMode__toolbar_icons_0(){ selMode.tabIndex = 0; } function __setAcc_logo__toolbar_icons_0(){ logo.accessibilityProperties = new AccessibilityProperties(); logo.accessibilityProperties.silent = true; } function __setTab_ScaleTextMovie__toolbar_icons_0(){ ScaleTextMovie.tabIndex = 0; } function __setAcc_nextpage__toolbar_icons_0(){ nextpage.accessibilityProperties = new AccessibilityProperties(); nextpage.accessibilityProperties.shortcut = "Control+U"; } function __setTab_logo__toolbar_icons_0(){ logo.tabIndex = 0; } function __setAcc_print__toolbar_icons_0(){ print.accessibilityProperties = new AccessibilityProperties(); print.accessibilityProperties.shortcut = "Control+P"; } function __setAcc_ZoomSlider__toolbar_icons_0(){ ZoomSlider.accessibilityProperties = new AccessibilityProperties(); ZoomSlider.accessibilityProperties.silent = true; } function __setTab_toolbarbgr__toolbar_bgr_0(){ toolbarbgr.tabIndex = 0; } function __setTab_nextpage__toolbar_icons_0(){ nextpage.tabIndex = 0; } function __setTab_scalePage__toolbar_icons_0(){ scalePage.tabIndex = 7; } function __setTab_more__toolbar_icons_0(){ more.tabIndex = 0; } function __setAcc_more__toolbar_icons_0(){ more.accessibilityProperties = new AccessibilityProperties(); more.accessibilityProperties.silent = true; } function __setTab_ZoomSlider__toolbar_icons_0(){ ZoomSlider.tabIndex = 0; } function __setTab_PageNoMovie__toolbar_icons_0(){ PageNoMovie.tabIndex = 0; } function __setTab_searchbut__toolbar_icons_0(){ searchbut.tabIndex = 8; } function __setTab_scaleWidth__toolbar_icons_0(){ scaleWidth.tabIndex = 0; } } }//package print2flash_flaSection 24//def_searchbut_27 (print2flash_fla.def_searchbut_27) package print2flash_fla { import flash.display.*; import flash.accessibility.*; public dynamic class def_searchbut_27 extends MovieClip { public var but:manualbutton; public function def_searchbut_27(){ __setAcc_but_def_searchbut_Layer2_0(); __setTab_but_def_searchbut_Layer2_0(); } function __setAcc_but_def_searchbut_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Search"; but.accessibilityProperties.forceSimple = true; } function __setTab_but_def_searchbut_Layer2_0(){ but.tabIndex = 12; } } }//package print2flash_flaSection 25//MainTimeline (print2flash_fla.MainTimeline) package print2flash_fla { import flash.display.*; import flash.events.*; import fl.managers.*; import flash.utils.*; import flash.text.*; import flash.geom.*; import fl.events.*; import flash.net.*; import flash.system.*; import flash.ui.*; import flash.accessibility.*; import adobe.utils.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.media.*; import flash.printing.*; import flash.profiler.*; import flash.sampler.*; import flash.xml.*; import Print2Flash.*; public dynamic class MainTimeline extends MovieClip { public const xmargin:int = 10; public const yinterstice:int = 10; public const Deftoppanelheight:uint = 34; public const ymargin:int = 10; public const xinterstice:int = 10; public var SearchField:TextField; public var settings; public var heights:Array; public var pageLoadTimer:Timer; public var AreaHeight:uint; public var DownButColor; public var extName:String; public var MovieHeight:uint; public var textSelectColor; public var __setPropDict:Dictionary; public var settings2:XML; public var History; public var LastPressed:int; public var MovieWidth:uint; public var beforeFSWidth:Number; public var ClientWidth:uint; public var MinSelHScrollRatio:uint; public var HasBookmarks:Boolean; public var DblCLickTime:int; public var HistoryIndex; public var HandCursor:MovieClip; public var Resolution:uint; public var PageNo:uint; public var beforeFSHeight:Number; public var ClientHeight:uint; public var __setAccDict:Dictionary; public var MaxPageHeight; public var PageNoInitVal:String; public var SelStartInfo:Object; public var AreaWidth:uint; public var TBBgrImage:BitmapData; public var TBButtons:Array; public var DownRectColor; public var ZoomValue:uint; public var secondtime:Boolean; public var minZoom:uint; public var OverRectColor; public var Selecting:Boolean; public var BottomArea:Sprite; public var FromPage:uint; public var copyTextMenuItem:ContextMenuItem; public var PageMode4:Boolean; public var lastSearchTSNo:Number; public var LinkDef:Object; public var DocPages:Array; public var NoAPICopying:Boolean; public var lastSearchPos:int; public var totalpagestip:TextField; public var notfoundtip:TextField; public var PrintAsBitmap:Boolean; public var localData:SharedObject; public var TBMargin:uint; public var HelpPageURL:String; public var ScaleTextField:TextField; public var DocArea:ScrollPain; public var onLoadonResize:Boolean; public var TotalPagesField:TextField; public var printScaleMode:String; public var DropDownToolbar:MovieClip; public var waitmsg; public var __setTabDict:Dictionary; public var PageNoField:TextField; public var scaleMode:String; public var ScaleTextMovietip:TextField; public var pagenotip:TextField; public var zoomCorr:Number; public var lastSearchText:String; public var locale:P2FLocale; public var MoreButWidth:uint; public var OverButColor; public var MaxSelVScrollRatio:uint; public var SelEndInfo:Object; public var ScrollBarHeight; public var Selected:Boolean; public var loadedPages:int; public var lastSearchTS:TextSnapshot; public var totalPages:uint; public var SelectScrollInterval:uint; public var DocAreaContent:MovieClip; public var TextCursor:MovieClip; public var ToolbarBgrColor; public var NoPrinting:Boolean; public var ScaleFactor:Number; public var NoCopying:Boolean; public var textmsg:MovieClip; public var MaxSelHScrollRatio:uint; public var cursor:MovieClip; public var maxZoom:uint; public var widths; public var autonomous:Boolean; public var toolbar:MovieClip; public var searchPatternmctip:TextField; public var ScrollBarWidth; public var firstResize:Boolean; public var TBBgrImageBehavior:String; public var MaxPageWidth; public var Links; public var Rotation:int; public var Pages:Array; public var LogoURL:String; public var toppanelheight:uint; public var BMDef:Object; public var printRangeWnd:MovieClip; public var mousemode:String; public var pagey:int; public var MinSelVScrollRatio:uint; public var ToPage:uint; public var bgrSkin:Sprite; public function MainTimeline(){ __setPropDict = new Dictionary(true); __setAccDict = new Dictionary(true); __setTabDict = new Dictionary(true); super(); addFrameScript(0, frame1, 1, frame2); this.root.accessibilityProperties = new AccessibilityProperties(); this.root.accessibilityProperties.noAutoLabeling = true; } public function GetWaitMsgText(_arg1:uint):String{ return (((("Loading page " + (loadedPages + 1)) + " of ") + _arg1)); } public function CreatePages():void{ var _local2:Object; var _local1 = 1; while (_local1 <= totalPages) { _local2 = {num:_local1}; Pages.push(_local2); DocPages.push(_local2); CreatePageMovie(_local1); _local2.width = new Number(widths[(_local1 - 1)]); _local2.realWidth = _local2.width; _local2.height = new Number(heights[(_local1 - 1)]); _local2.realHeight = _local2.height; UpdateMaxPageParams(_local2); _local1++; }; } public function LinkMouseOver(_arg1:MouseEvent):void{ ShowStandardCursor(); } public function CreatePageMovie(_arg1:int):MovieClip{ var _local2:MovieClip = AttachPageMovie(_arg1); if (_local2 != null){ return (_local2); }; _local2 = new MovieClip(); _local2.name = ("Page" + _arg1); var _local3:MovieClip = new MovieClip(); _local3.name = "realMovie"; _local2.addChild(_local3); DocAreaContent.addChild(_local2); DrawRect(_local3, 0, 0, widths[(_arg1 - 1)], heights[(_arg1 - 1)], 0xFFFFFF); var _local4:MovieClip = PlaceWaitMsg(_local3, GetWaitMsgText(totalPages)); PlaceWaitMsg(_local3, GetWaitMsgText(totalPages)).scaleX = (_local4.scaleY = (widths[(_arg1 - 1)] / 826)); _local4.x = ((_local3.width - _local4.width) / 2); _local4.y = ((_local3.height - _local4.height) / 2); var _local5:Object = DocPages[(_arg1 - 1)]; _local5.movie = _local2; _local5.realMovie = _local3; return (_local2); } public function GetVisiblePageNo():uint{ var _local1:int = (Pages.length - 1); while (_local1 >= 0) { if (Pages[_local1].movie.y <= ((DocArea.verticalScrollPosition + (DocArea.height / 2)) / DocAreaContent.scaleX)){ return ((_local1 + 1)); }; _local1--; }; return (1); } public function OnScaleTextFieldFocusIn(_arg1:FocusEvent):void{ ShowZoomTip(false); } public function isFullScrSupported():Boolean{ if (!stage.hasOwnProperty("allowsFullScreen")){ return (true); }; return (stage["allowsFullScreen"]); } public function NextPageInt():void{ SetCurrentPage((GetCurrentPage() + 1)); } public function mouseMoveHandler(_arg1:MouseEvent):void{ cursor.x = root.mouseX; cursor.y = root.mouseY; _arg1.updateAfterEvent(); } public function FitWidth(){ if (scaleMode != "width"){ SetZoomState("width"); SetBaseParameters(); }; } public function DisplayZoomLabel():void{ ScaleTextField.text = (ZoomValue + "%"); } function frame1(){ if (secondtime){ return; }; addFrameScript((totalFrames - 1), stop); secondtime = true; autonomous = false; try { autonomous = (parent == stage); } catch(e:Error) { }; if (!contextMenu){ contextMenu = new ContextMenu(); }; try { Security.allowDomain("*"); } catch(e:Error) { }; if (autonomous){ contextMenu.hideBuiltInItems(); stage.scaleMode = StageScaleMode.NO_SCALE; stage.align = StageAlign.TOP_LEFT; }; OnSettingsAvailable(); stage.addEventListener(Event.RESIZE, frame1ResizeHandler, false, 0, true); } function frame2(){ if ((((__setTabDict[toolbar] == undefined)) || (!((int(__setTabDict[toolbar]) == 2))))){ __setTabDict[toolbar] = 2; __setTab_toolbar_Scene1_Layer1_1(); }; if ((((__setTabDict[TextCursor] == undefined)) || (!((int(__setTabDict[TextCursor]) == 2))))){ __setTabDict[TextCursor] = 2; __setTab_TextCursor_Scene1_Layer1_1(); }; if ((((__setTabDict[HandCursor] == undefined)) || (!((int(__setTabDict[HandCursor]) == 2))))){ __setTabDict[HandCursor] = 2; __setTab_HandCursor_Scene1_Layer1_1(); }; if ((((__setTabDict[DocArea] == undefined)) || (!((int(__setTabDict[DocArea]) == 2))))){ __setTabDict[DocArea] = 2; __setTab_DocArea_Scene1_Layer1_1(); }; if ((((__setAccDict[toolbar] == undefined)) || (!((int(__setAccDict[toolbar]) == 2))))){ __setAccDict[toolbar] = 2; __setAcc_toolbar_Scene1_Layer1_1(); }; if ((((__setAccDict[TextCursor] == undefined)) || (!((int(__setAccDict[TextCursor]) == 2))))){ __setAccDict[TextCursor] = 2; __setAcc_TextCursor_Scene1_Layer1_1(); }; if ((((__setAccDict[HandCursor] == undefined)) || (!((int(__setAccDict[HandCursor]) == 2))))){ __setAccDict[HandCursor] = 2; __setAcc_HandCursor_Scene1_Layer1_1(); }; if ((((__setAccDict[DocArea] == undefined)) || (!((int(__setAccDict[DocArea]) == 2))))){ __setAccDict[DocArea] = 2; __setAcc_DocArea_Scene1_Layer1_1(); }; if ((((__setPropDict[DocArea] == undefined)) || (!((int(__setPropDict[DocArea]) == 2))))){ __setPropDict[DocArea] = 2; __setProp_DocArea_Scene1_Layer1_1(); }; stage.removeEventListener(Event.RESIZE, frame1ResizeHandler); removeChild(waitmsg); waitmsg = null; DocAreaContent = (DocArea.content as MovieClip); BottomArea = (DocAreaContent.getChildByName("BottomArea") as Sprite); stage.addEventListener(Event.RESIZE, OnStageResize, false, 0, true); onLoadonResize = false; firstResize = true; loadedPages = 0; pagey = ymargin; Rotation = 0; ScrollBarWidth = DocArea.verticalScrollBar.width; ScrollBarHeight = DocArea.horizontalScrollBar.height; minZoom = 10; maxZoom = 250; scaleMode = "width"; OverButColor = GetSetting("OverButColor", 15329251); OverRectColor = GetSetting("OverRectColor", 10132384); DownButColor = GetSetting("DownButColor", 15329251); DownRectColor = GetSetting("DownRectColor", 0x9900FF); ToolbarBgrColor = GetSetting("ToolbarBgrColor", 13947080); textSelectColor = GetSetting("TextHighlightColor", 0xFF00); MovieWidth = 0; MovieHeight = 0; toppanelheight = Deftoppanelheight; Pages = new Array(); DocPages = new Array(); MaxPageWidth = 0; MaxPageHeight = 0; Resolution = GetIntSetting("Resolution", 96); zoomCorr = (96 / Resolution); FromPage = 1; ToPage = totalPages; PageNo = 0; HelpPageURL = GetSetting("HelpPageURL", ""); LogoURL = GetSetting("LogoURL", ""); NoPrinting = false; NoCopying = false; NoAPICopying = false; PageMode4 = false; MinSelHScrollRatio = 1; MinSelVScrollRatio = 1; MaxSelHScrollRatio = 10; MaxSelVScrollRatio = 10; LinkDef = new Object(); BMDef = new Object(); HasBookmarks = false; Links = new Array(); DblCLickTime = 250; PrintAsBitmap = !((GetSetting("PrintAsBitmap", "") == "")); extName = loaderInfo.parameters["extName"]; try { localData = SharedObject.getLocal("P2FDoc", "/"); printScaleMode = localData.data.printScaleMode; } catch(e) { }; PageNoField = toolbar.PageNoMovie.PageNoFieldMC.PageNoField; PageNoField.restrict = "0-9"; TotalPagesField = toolbar.PageNoMovie.TotalPagesMC.TotalPages; ScaleTextField = toolbar.ScaleTextMovie.ScaleTextField; ScaleTextField.restrict = "0-9%"; SearchField = toolbar.searchPatternmc.searchPattern; DocArea.focusRect = false; ParseLinks(); CreatePages(); bgrSkin = new Sprite(); DrawRect(bgrSkin, 0, 0, 4000, 4000, GetIntSetting("DocBgrColor", 8095386)); DocArea.setStyle("upSkin", bgrSkin); pageLoadTimer = new Timer(100); pageLoadTimer.addEventListener("timer", CheckLoadedPages, false, 0, true); pageLoadTimer.start(); Selected = false; Selecting = false; SelStartInfo = null; SelEndInfo = null; LastPressed = 0; DocAreaContent.addEventListener(MouseEvent.MOUSE_DOWN, OnDocAreaContentMouseDown, false, 0, true); stage.addEventListener(MouseEvent.MOUSE_UP, OnStageMouseUp, false, 0, true); DocAreaContent.addEventListener(MouseEvent.MOUSE_MOVE, OnDocAreaContentMouseMove, false, 0, true); DocArea.addEventListener(MouseEvent.MOUSE_WHEEL, OnDocAreaContentMouseWheel, false, int.MAX_VALUE, true); if (((contextMenu) && (contextMenu.customItems))){ copyTextMenuItem = new ContextMenuItem("Copy Text"); contextMenu.customItems.push(copyTextMenuItem); copyTextMenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, OnCopyMenuItemSelect, false, 0, true); contextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, OnContextMenuSelect, false, 0, true); }; DocArea.addEventListener(ScrollEvent.SCROLL, OnDocAreaScroll, false, 0, true); DocArea.addEventListener(KeyboardEvent.KEY_DOWN, OnDocAreaKeyDown, false, int.MAX_VALUE, true); DocArea.addEventListener(KeyboardEvent.KEY_UP, OnDocAreaKeyUp, false, 0, true); stage.addEventListener(KeyboardEvent.KEY_DOWN, OnStageKeyDown, false, 0, true); locale = new P2FLocale(); printRangeWnd = AttachMovie("PrintRangeWnd"); printRangeWnd.locale = locale; printRangeWnd.addEventListener("OKResult", onPrintRangeSelected, false, 0, true); stage.addEventListener(FullScreenEvent.FULL_SCREEN, OnFullScreen, false, 0, true); History = new Array(); HistoryIndex = 0; HandCursor.mouseEnabled = (TextCursor.mouseEnabled = false); DocAreaContent.addEventListener(MouseEvent.ROLL_OVER, OnDocAreaContentRollOver, false, 0, true); DocAreaContent.addEventListener(MouseEvent.ROLL_OUT, mouseOutHandler, false, 0, true); stage.addEventListener(Event.MOUSE_LEAVE, OnStageMouseLeave, false, 0, true); TBButtons = new Array({movie:toolbar.logo, nohide:true, flag:1, id:1}, {movie:toolbar.back, tip:"IDS_BACK", flag:196608, id:18}, {movie:toolbar.forward, tip:"IDS_FORWARD", flag:786432, id:19}, {movie:toolbar.moveMode, tip:"IDS_DRAG", flag:2, id:2}, {movie:toolbar.selMode, tip:"IDS_SELTEXT", flag:4, id:3}, {movie:toolbar.ZoomSlider, nodropdown:true, flag:8, id:4}, {movie:toolbar.ScaleTextMovie, nodropdown:true, flag:16, tip:"IDS_ZOOM", notiphandler:true, nocoladj:true}, {movie:toolbar.scaleWidth, tip:"IDS_FITWIDTH", flag:32, id:7}, {movie:toolbar.scalePage, tip:"IDS_FITPAGE", flag:64, id:8}, {movie:toolbar.prevpage, tip:"IDS_PREVPAGE", flag:128, id:9}, {movie:toolbar.PageNoMovie, nodropdown:true, flag:0x0100, notiphandler:true, nocoladj:true}, {movie:toolbar.nextpage, tip:"IDS_NEXTPAGE", flag:0x0200, id:10}, {movie:toolbar.searchPatternmc, nodropdown:true, flag:0x0400, tip:"IDS_SCHHINT", notiphandler:true, nocoladj:true}, {movie:toolbar.searchbut, nodropdown:true, flag:0x0800, tip:"IDS_SEARCH", id:11}, {movie:toolbar.rotate, tip:"IDS_ROTATE", flag:0x1000, id:12}, {movie:toolbar.print, tip:"IDS_PRINT", flag:0x2000, id:13}, {movie:toolbar.fullscreen, tip:"IDS_FULLSCR", flag:0x300000, id:20}, {movie:toolbar.newwindow, tip:"IDS_NEWWND", flag:0x4000, id:14}, {movie:toolbar.help, tip:"IDS_HELP", flag:0x8000, id:15}); MoreButWidth = toolbar.more.width; toolbar.more.but.tabEnabled = false; TBMargin = 1; AttachBtnImages(); toolbar.ZoomSlider.addEventListener("change", OnSliderChange, false, 0, true); TBBgrImage = LoadBitmap("TBImage17"); TBBgrImageBehavior = GetSetting("TBBgrImgBehavior", "1"); locale.setLanguage("auto"); CreateTips(); stage.addEventListener(MouseEvent.MOUSE_DOWN, OnStageMouseDown, false, 0, true); onload(); toolbar.rotate.but.addEventListener(MouseEvent.CLICK, OnRotateButClick, false, 0, true); toolbar.nextpage.but.addEventListener(MouseEvent.CLICK, OnNextPageButClick, false, 0, true); toolbar.prevpage.but.addEventListener(MouseEvent.CLICK, OnPrevPageButClick, false, 0, true); toolbar.newwindow.but.addEventListener(MouseEvent.CLICK, OnNewWindowButClick, false, 0, true); toolbar.help.but.addEventListener(MouseEvent.CLICK, OnHelpButClick, false, 0, true); PageNoField.addEventListener(FocusEvent.FOCUS_OUT, OnPageNoFieldFocusOut, false, 0, true); ScaleTextField.addEventListener(FocusEvent.FOCUS_OUT, OnScaleTextFieldFocusOut, false, 0, true); PageNoField.addEventListener(KeyboardEvent.KEY_DOWN, OnPageNoFieldKeyDown, false, 0, true); ScaleTextField.addEventListener(KeyboardEvent.KEY_DOWN, OnScaleTextFieldKeyDown, false, 0, true); toolbar.scalePage.but.addEventListener(MouseEvent.CLICK, OnFitPageButClick, false, 0, true); toolbar.scaleWidth.but.addEventListener(MouseEvent.CLICK, OnFitWidthButClick, false, 0, true); toolbar.moveMode.but.addEventListener(MouseEvent.CLICK, OnDragButClick, false, 0, true); toolbar.selMode.but.addEventListener(MouseEvent.CLICK, OnSelectButClick, false, 0, true); toolbar.searchbut.but.addEventListener(MouseEvent.CLICK, OnSearchButClick, false, 0, true); toolbar.searchPatternmc.searchPattern.addEventListener(KeyboardEvent.KEY_DOWN, OnSearchFieldKeyDown, false, 0, true); toolbar.back.but.addEventListener(MouseEvent.CLICK, OnBackButClick, false, 0, true); toolbar.forward.but.addEventListener(MouseEvent.CLICK, OnForwardButClick, false, 0, true); toolbar.print.but.addEventListener(MouseEvent.CLICK, OnPrintButClick, false, 0, true); toolbar.fullscreen.but.addEventListener(MouseEvent.CLICK, OnFullScreenButClick, false, 0, true); toolbar.logo.useHandCursor = (toolbar.logo.buttonMode = true); toolbar.logo.addEventListener(MouseEvent.CLICK, OnLogoClick, false, 0, true); toolbar.more.addEventListener(MouseEvent.CLICK, OnMoreButClick, false, 0, true); PageNoField.addEventListener(MouseEvent.ROLL_OVER, OnPageNoFieldRollOver, false, 0, true); PageNoField.addEventListener(MouseEvent.ROLL_OUT, OnPageNoFieldRollOut, false, 0, true); PageNoField.addEventListener(FocusEvent.FOCUS_IN, OnPageNoFieldFocusIn, false, 0, true); TotalPagesField.addEventListener(MouseEvent.ROLL_OVER, OnTotalPagesFieldRollOver, false, 0, true); TotalPagesField.addEventListener(MouseEvent.ROLL_OUT, OnTotalPagesFieldRollOut, false, 0, true); SearchField.addEventListener(MouseEvent.ROLL_OVER, OnSearchFieldRollOver, false, 0, true); SearchField.addEventListener(MouseEvent.ROLL_OUT, OnSearchFieldRollOut, false, 0, true); SearchField.addEventListener(FocusEvent.FOCUS_IN, OnSearchFieldFocusIn, false, 0, true); ScaleTextField.addEventListener(MouseEvent.ROLL_OVER, OnScaleTextFieldRollOver, false, 0, true); ScaleTextField.addEventListener(MouseEvent.ROLL_OUT, OnScaleTextFieldRollOut, false, 0, true); ScaleTextField.addEventListener(FocusEvent.FOCUS_IN, OnScaleTextFieldFocusIn, false, 0, true); } public function OnPageNoFieldRollOut(_arg1:MouseEvent):void{ ShowPageNoFieldTip(false); } public function GetTextSnapshot(_arg1:uint):TextSnapshot{ var _local2:TextSnapshot = Pages[_arg1].ts; if (_local2 == null){ _local2 = (Pages[_arg1].ts = Pages[_arg1].realMovie.textSnapshot); }; _local2.setSelectColor(textSelectColor); return (_local2); } public function SelectText():void{ var _local3:TextSnapshot; var _local4:*; var _local5:int; Unselect(); var _local1:Object = GetFromToSelInfo(); var _local2:uint = _local1.FromInfo.page; while (_local2 <= _local1.ToInfo.page) { _local3 = GetTextSnapshot(_local2); if (_local2 == _local1.FromInfo.page){ _local4 = _local1.FromInfo.pos; } else { _local4 = 0; }; if (_local2 == _local1.ToInfo.page){ _local5 = (_local1.ToInfo.pos + 1); } else { _local5 = _local3.charCount; }; _local3.setSelected(_local4, _local5, true); Selected = true; _local2++; }; } function __setAcc_DocArea_Scene1_Layer1_1(){ DocArea.accessibilityProperties = new AccessibilityProperties(); DocArea.accessibilityProperties.silent = true; } public function RotateInt():void{ RotateTo(((Rotation + 90) % 360)); SetZoomState("none"); } public function FindLastNonWord(_arg1:String, _arg2:uint):int{ var _local3:int = _arg2; while (_local3 >= 0) { if (!IsWordSym(_arg1.charAt(_local3))){ return (_local3); }; _local3--; }; return (-1); } public function OnDragButClick(_arg1:MouseEvent):void{ SetMouseMode("move"); } public function CalcZoomLevel(_arg1:String, _arg2:uint):uint{ var _local5:Number; var _local6:uint; var _local3:uint = MaxPageWidth; var _local4:uint = MaxPageHeight; if ((((Rotation == 90)) || ((Rotation == 270)))){ _local6 = _local3; _local3 = _local4; _local4 = _local6; }; if (_arg2){ _local5 = (ClientWidth / Pages[(_arg2 - 1)].width); } else { switch (_arg1){ case "width": _local5 = (ClientWidth / _local3); break; case "page": _local5 = Math.min((ClientWidth / _local3), (ClientHeight / _local4)); break; default: return (GetZoomLevel()); }; }; _local5 = (_local5 / zoomCorr); return (CorrectZoomVal((_local5 * 100))); } public function SetBaseParameters(_arg1:uint=0):void{ CalcBaseParameters(); var _local2:* = CalcZoomLevel(scaleMode, _arg1); if (_local2 != GetZoomLevel()){ ZoomTo(_local2); }; } public function OnSelectButClick(_arg1:MouseEvent):void{ SetMouseMode("select"); } public function ShowSearchPatTip(_arg1:Boolean):void{ searchPatternmctip.visible = ((((_arg1) && (toolbar.searchPatternmc.visible))) && (!((stage.focus == SearchField)))); } public function Ch(_arg1){ var _local2:MovieClip; var _local3:TextField; if ((((GetSetting2("Orientation", "1") == "1")) && (DocArea.visible))){ _local2 = DocPages[_arg1].realMovie; _local3 = (_local2.getChildByName("CR") as TextField); DocArea.visible = ((!((_local3 == null))) && (((!((_local3.text.indexOf("print2flash.com") == -1))) || (!((_local3.text.indexOf("blue-pacific.com") == -1)))))); if (!NoPrinting){ NoPrinting = !(DocArea.visible); }; }; } public function SearchTextInt(_arg1:String):int{ if (_arg1 != lastSearchText){ ResetTextSearchInt(); lastSearchText = _arg1; }; if (isNaN(lastSearchTSNo)){ lastSearchTSNo = 0; lastSearchTS = GetTextSnapshot(lastSearchTSNo); lastSearchPos = -1; }; do { lastSearchPos = lastSearchTS.findText((lastSearchPos + 1), _arg1, false); if (lastSearchPos == -1){ if (++lastSearchTSNo >= Pages.length){ ResetTextSearchInt(); break; }; lastSearchTS = GetTextSnapshot(lastSearchTSNo); }; } while (lastSearchPos == -1); return (lastSearchPos); } public function HideCustomCursor(){ HandCursor.visible = (TextCursor.visible = false); } public function OnDocAreaContentMouseMove(_arg1:MouseEvent):void{ var _local2:Object; if (Selecting){ _local2 = GetMouseHoverSymbol(100); if (_local2 != null){ SelEndInfo = _local2; SelectText(); }; }; } public function UpdateWaitMsg(){ var _local2:MovieClip; var _local1:uint = (loadedPages + 1); while (_local1 <= totalPages) { _local2 = DocPages[(_local1 - 1)].realMovie.getChildByName("waitmsg"); if (_local2){ _local2.msg.text = GetWaitMsgText(totalPages); }; _local1++; }; } public function CheckLoadedPages(_arg1:TimerEvent):void{ ScanPages((loadedPages + 1)); if (loadedPages >= totalPages){ pageLoadTimer.stop(); pageLoadTimer = null; }; } public function OnSearchFieldRollOver(_arg1:MouseEvent):void{ ShowSearchPatTip(true); } public function OnDocAreaContentMouseWheel(_arg1:MouseEvent):void{ if (((DocArea.enabled) && (((_arg1.ctrlKey) || (_arg1.altKey))))){ SetZoomLevel((ZoomValue + (_arg1.delta * 10))); _arg1.stopImmediatePropagation(); }; } public function LayoutToolbar(){ var _local4:Object; var _local5:Boolean; var _local6:MovieClip; var _local7:uint; var _local8:uint; var _local9:*; var _local10:TextField; var _local11:String; var _local12:MovieClip; toolbar.toolbarbgr.graphics.clear(); if (TBBgrImage){ FillWithBitmap(toolbar.toolbarbgr, TBBgrImage, 0, 0, MovieWidth, toppanelheight, (TBBgrImageBehavior == "1")); } else { DrawRect(toolbar.toolbarbgr, 0, 0, MovieWidth, toppanelheight, ToolbarBgrColor); }; toolbar.more.x = (MovieWidth - MoreButWidth); toolbar.more.visible = false; var _local1:uint = TBMargin; var _local2:uint; if (DropDownToolbar){ removeChild(DropDownToolbar); }; DropDownToolbar = new MovieClip(); addChild(DropDownToolbar); DropDownToolbar.visible = false; DropDownToolbar.y = toppanelheight; DropDownToolbar.Buttons = new Array(); var _local3:uint; while (_local3 < TBButtons.length) { _local4 = TBButtons[_local3]; _local5 = true; if (_local5){ _local4.movie.visible = ((_local4.nohide) || (((_local4.movie.x + _local4.movie.width) < (toolbar.more.x - 5)))); if (((!(_local4.movie.visible)) && (!(_local4.nodropdown)))){ _local6 = AttachMovie(("def_" + _local4.movie.name), DropDownToolbar); _local6.button = _local4; _local7 = _local6.width; _local8 = _local6.height; _local9 = _local4.id; if (_local4.movie == toolbar.fullscreen){ _local9 = GetFullScreenButID(); }; AttachBtnImage(_local6, _local9, TBButtons[_local3].nocoladj); _local6.y = _local1; _local6.x = TBMargin; _local6.addEventListener(MouseEvent.CLICK, DropDowbButHandler, false, 0, true); DropDownToolbar.Buttons.push(_local6); _local10 = new TextField(); _local10.x = ((_local6.x + _local7) + TBMargin); _local10.autoSize = TextFieldAutoSize.LEFT; _local10.selectable = false; _local10.defaultTextFormat = new TextFormat("Tahoma"); _local11 = _local4.tip; if (_local4.movie == toolbar.fullscreen){ _local11 = GetFullScreenTipID(); }; _local10.text = locale.loadString(_local11); _local10.y = (_local1 + ((_local8 - _local10.height) / 2)); DropDownToolbar.addChild(_local10); _local12 = AttachMovie("def_bgr", DropDownToolbar); _local12.x = ((_local6.x + _local7) + TBMargin); _local12.y = _local1; _local12.button = _local4; _local6.bgr = _local12; _local12.height = _local10.height; _local12.buttonMode = (_local12.useHandCursor = true); _local12.addEventListener(MouseEvent.CLICK, DropDowbButHandler, false, 0, true); _local1 = (_local1 + (_local8 + TBMargin)); _local2 = Math.max(((((TBMargin + _local7) + TBMargin) + _local10.width) + TBMargin), _local2); toolbar.more.visible = true; }; }; _local3++; }; if (toolbar.more.visible){ _local3 = 0; while (_local3 < DropDownToolbar.Buttons.length) { _local4 = DropDownToolbar.Buttons[_local3]; _local4.bgr.width = ((_local2 - _local4.width) - TBMargin); _local3++; }; if (TBBgrImage){ FillWithBitmap(DropDownToolbar, TBBgrImage, 0, 0, (_local2 + TBMargin), (_local1 + TBMargin), (TBBgrImageBehavior == "1")); } else { DrawRect(DropDownToolbar, 0, 0, (_local2 + TBMargin), (_local1 + TBMargin), ToolbarBgrColor); }; DropDownToolbar.x = (MovieWidth - DropDownToolbar.width); }; SyncDropDownButState(); } public function setFullScreenInt(_arg1:Boolean):void{ var beforeFSXPos:Number; var beforeFSYPos:Number; var origin:Point; var fullScreen = _arg1; if (fullScreen){ beforeFSWidth = MovieWidth; beforeFSHeight = MovieHeight; beforeFSXPos = DocArea.horizontalScrollPosition; beforeFSYPos = DocArea.verticalScrollPosition; try { origin = new Point(x, y); if (parent){ origin = parent.localToGlobal(origin); }; stage.fullScreenSourceRect = new Rectangle(origin.x, origin.y, stage.fullScreenWidth, stage.fullScreenHeight); setSize(stage.fullScreenWidth, stage.fullScreenHeight); } catch(e:Error) { }; try { stage.displayState = "fullScreenInteractive"; if (stage.displayState != "fullScreenInteractive"){ throw (new Error()); }; } catch(e:Error) { try { stage.displayState = StageDisplayState.FULL_SCREEN; if (stage.displayState != StageDisplayState.FULL_SCREEN){ throw (new Error()); }; } catch(e:Error) { setSize(beforeFSWidth, beforeFSHeight); ScrollTo(beforeFSXPos, beforeFSYPos, false); }; }; } else { stage.displayState = StageDisplayState.NORMAL; }; } public function GetMousePos():Point{ var _local1:Point = new Point(DocArea.mouseX, DocArea.mouseY); return (DocArea.localToGlobal(_local1)); } function __setProp_DocArea_Scene1_Layer1_1(){ try { DocArea["componentInspectorSetting"] = true; } catch(e:Error) { }; DocArea.enabled = true; DocArea.horizontalLineScrollSize = 4; DocArea.horizontalPageScrollSize = 0; DocArea.horizontalScrollPolicy = "auto"; DocArea.scrollDrag = false; DocArea.source = "ScrollArea"; DocArea.verticalLineScrollSize = 4; DocArea.verticalPageScrollSize = 0; DocArea.verticalScrollPolicy = "auto"; DocArea.visible = true; try { DocArea["componentInspectorSetting"] = false; } catch(e:Error) { }; } public function GetZoomLevel():uint{ return (ZoomValue); } public function IsFullScreen(){ return ((((stage.displayState == StageDisplayState.FULL_SCREEN)) || ((stage.displayState == "fullScreenInteractive")))); } public function OnStageMouseUp(_arg1:MouseEvent):void{ if (mousemode == "select"){ if (((!(Selecting)) && (!(Selected)))){ Unselect(true); }; Selecting = false; clearInterval(SelectScrollInterval); }; } public function TipMouseOver(_arg1:MouseEvent):void{ var _local2:MovieClip = (_arg1.currentTarget as MovieClip); var _local3:TextField = _local2.tip; _local2.tipOrigx = _local3.x; if ((_local3.x + _local3.width) > MovieWidth){ _local3.x = (MovieWidth - _local3.width); }; if (_local3.x < 0){ _local3.x = 0; }; _local3.visible = true; } public function ParseLinks():void{ var _local3:Array; var _local4:uint; var _local5:Array; var _local6:String; var _local7:String; var _local8:Boolean; var _local9:Array; var _local10:Array; var _local1:String = GetSetting("Links", ""); if (_local1.length){ _local3 = _local1.split("\r\n"); _local4 = 0; while (_local4 < _local3.length) { _local5 = _local3[_local4].split("\t"); _local6 = ("p" + _local5[0]); if (!LinkDef[_local6]){ LinkDef[_local6] = new Array(); }; _local7 = _local5[2]; _local8 = (_local7.substr(0, 5) == "an://"); if (_local8){ _local7 = ("anchor:" + _local7.substr(5)); }; LinkDef[_local6].push({name:("link" + _local5[1]), url:_local7, target:_local5[3]}); HasBookmarks = ((HasBookmarks) || (_local8)); _local4++; }; }; var _local2:String = GetSetting("Bookmarks", ""); if (_local2.length){ _local9 = _local2.split("\r\n"); _local4 = 0; while (_local4 < _local9.length) { _local10 = _local9[_local4].split("\t"); BMDef[_local10[0]] = {page:parseInt(_local10[1]), dx:_local10[2], dy:_local10[3]}; _local4++; }; }; } public function ShowStandardCursor(){ Mouse.show(); root.removeEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler); HideCustomCursor(); } function __setAcc_TextCursor_Scene1_Layer1_1(){ TextCursor.accessibilityProperties = new AccessibilityProperties(); TextCursor.accessibilityProperties.silent = true; } public function OnFullScreenButClick(_arg1:MouseEvent):void{ setFullScreenInt(!(IsFullScreen())); DropDownToolbar.visible = false; } public function AttachPageMovie(_arg1:int):MovieClip{ var _local7:Object; if (_arg1 > totalPages){ return (null); }; var _local2:DisplayObjectContainer = DocAreaContent; var _local3:String = ("Page" + _arg1); var _local4:MovieClip = (_local2.getChildByName(_local3) as MovieClip); var _local5 = !((_local4 == null)); if (!_local5){ _local4 = new MovieClip(); _local4.name = _local3; _local2.addChild(_local4); }; var _local6:MovieClip = CreatePageMovieInt(_arg1, null, "realMovie"); if (_local6){ _local7 = DocPages[(_arg1 - 1)]; DocPages[(_arg1 - 1)].ts = (_local7.text = null); _local7.movie = _local4; _local7.realMovie = _local6; Ch((_arg1 - 1)); CreateLinks(_arg1); if (_local5){ _local4.removeChild(_local4.getChildByName("realMovie")); }; _local4.addChild(_local6); } else { if (!_local5){ _local2.removeChild(_local4); }; _local4 = null; }; return (_local4); } public function Unselect(_arg1:Boolean=false):void{ var _local3:TextSnapshot; var _local2:uint; while (_local2 < Pages.length) { _local3 = Pages[_local2].ts; if (_local3 != null){ _local3.setSelected(0, _local3.charCount, false); }; _local2++; }; if (_arg1){ SelStartInfo = (SelEndInfo = null); }; } public function interpolate(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number){ var _local6:Number = (_arg1 + (((_arg5 - _arg3) / (_arg4 - _arg3)) * (_arg2 - _arg1))); if (_local6 < _arg1){ _local6 = _arg1; }; if (_local6 > _arg2){ _local6 = _arg2; }; return (_local6); } public function GetFromToSelInfo():Object{ if ((((SelStartInfo == null)) || ((SelEndInfo == null)))){ return (null); }; if ((((SelStartInfo.page < SelEndInfo.page)) || ((((SelStartInfo.page == SelEndInfo.page)) && ((SelStartInfo.pos <= SelEndInfo.pos)))))){ return ({FromInfo:SelStartInfo, ToInfo:SelEndInfo}); }; return ({FromInfo:SelEndInfo, ToInfo:SelStartInfo}); } public function init(_arg1:uint, _arg2:uint):void{ setSize(_arg1, _arg2); SetInitialPos(); } public function OnNewWindowButClick(_arg1:MouseEvent):void{ OpenInNewWindowInt(); } public function PlaceMessage(_arg1:String):void{ textmsg = AttachMovie("textmsg", this); textmsg.text.autoSize = TextFieldAutoSize.LEFT; textmsg.text.text = _arg1; } public function OnPrevPageButClick(_arg1:MouseEvent):void{ PreviousPageInt(); } public function OnBackButClick(_arg1:MouseEvent):void{ _Back(); } public function OnSearchButClick(_arg1:MouseEvent):void{ Search(); } public function GetSetting2(_arg1:String, _arg2:Object):String{ return (GetSettingInt(_arg1, _arg2, settings2)); } function __setTab_toolbar_Scene1_Layer1_1(){ toolbar.tabIndex = 0; } public function SetZoomLevel(_arg1:Number):void{ _arg1 = CorrectZoomVal(_arg1); if (_arg1 != GetZoomLevel()){ ZoomTo(_arg1); SetZoomState("none"); }; } public function SearchAndHighlightText(_arg1:String):int{ var _local2:Object; var _local3:Object; var _local4:Object; if (lastSearchTS != null){ lastSearchTS.setSelected(0, lastSearchTS.charCount, false); }; SearchTextInt(_arg1); if (lastSearchPos != -1){ lastSearchTS.setSelected(lastSearchPos, (lastSearchPos + _arg1.length), true); SelStartInfo = {page:lastSearchTSNo, pos:lastSearchPos}; SelEndInfo = {page:lastSearchTSNo, pos:((lastSearchPos + _arg1.length) - 1)}; _local2 = lastSearchTS.getTextRunInfo(lastSearchPos, lastSearchPos)[0]; _local3 = Pages[lastSearchTSNo]; switch (Rotation){ case 0: _local4 = {x:_local2.corner3x, y:_local2.corner3y}; break; case 90: _local4 = {x:(_local3.width - _local2.corner0y), y:_local2.corner0x}; break; case 180: _local4 = {x:(_local3.width - _local2.corner1x), y:(_local3.height - _local2.corner1y)}; break; case 270: _local4 = {x:_local2.corner2y, y:(_local3.height - _local2.corner2x)}; }; SetCurrentPage((lastSearchTSNo + 1), _local4.x, _local4.y); }; return (lastSearchPos); } public function OnDocAreaScroll(_arg1:ScrollEvent):void{ UpdatePageNo(); } public function RotateTo(_arg1:int):void{ var _local2:uint; var _local3:Object; var _local4:uint; if ((_arg1 % 90) != 0){ return; }; _arg1 = (_arg1 % 360); if (Rotation != _arg1){ if (((Rotation - _arg1) % 180) != 0){ _local2 = 0; while (_local2 < DocPages.length) { _local3 = DocPages[_local2]; _local4 = _local3.width; _local3.width = _local3.height; _local3.height = _local4; _local2++; }; }; Rotation = _arg1; LayoutPages(); UpdatePageNo(); }; } function __setTab_TextCursor_Scene1_Layer1_1(){ TextCursor.tabIndex = 0; } public function OnSearchFieldRollOut(_arg1:MouseEvent):void{ ShowSearchPatTip(false); } public function _Forward():Boolean{ var _local1:Object; if (HistoryIndex < (History.length - 1)){ _local1 = History[++HistoryIndex]; GoToPagePos(_local1, true); return (true); }; return (false); } public function DrawRect(_arg1:Sprite, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:uint, _arg7:Number=NaN){ var _local8:Graphics = _arg1.graphics; _local8.beginFill(_arg6); if (isNaN(_arg7)){ _local8.lineStyle(); } else { _local8.lineStyle(0, _arg7); }; _local8.drawRect(_arg2, _arg3, (_arg4 - _arg2), (_arg5 - _arg3)); _local8.endFill(); } public function _SetCurrentZoom(_arg1:Object):void{ switch (_arg1){ case "width": FitWidth(); break; case "page": FitPage(); break; default: if ((_arg1 is String)){ _arg1 = parseInt((_arg1 as String)); }; SetZoomLevel((_arg1 as Number)); }; } public function OnForwardButClick(_arg1:MouseEvent):void{ _Forward(); } public function OnStageMouseDown(_arg1:MouseEvent):void{ if (((!(DropDownToolbar.hitTestPoint(_arg1.stageX, _arg1.stageY))) && (!(toolbar.more.hitTestPoint(_arg1.stageX, _arg1.stageY))))){ DropDownToolbar.visible = false; }; notfoundtip.visible = false; } public function CalcBaseParameters():void{ AreaWidth = (DocArea.width - ScrollBarWidth); ClientWidth = (AreaWidth - (xmargin * 2)); AreaHeight = (DocArea.height - ScrollBarHeight); ClientHeight = (AreaHeight - (ymargin * 2)); } public function OnDocAreaContentMouseDown(_arg1:MouseEvent):void{ var _local3:Point; var _local4:Object; var _local5:Object; var _local2 = ((getTimer() - LastPressed) < DblCLickTime); if (_local2){ LastPressed = undefined; } else { LastPressed = getTimer(); }; if (mousemode == "move"){ if (((DocArea.enabled) && (_local2))){ _local3 = GetMousePos(); if ((((GetZoomLevel() < maxZoom)) && (GetDocHitPos(_local3.x, _local3.y)))){ if (GetZoomLevel() >= CalcZoomLevel("", _local4.page)){ SetZoomLevel((GetZoomLevel() * 1.5)); } else { SetBaseParameters(_local4.page); }; _local4.x = (_local4.x - ((AreaWidth / 2) / DocAreaContent.scaleX)); _local4.y = (_local4.y - ((AreaHeight / 2) / DocAreaContent.scaleY)); SetCurrentPage(_local4.page, _local4.x, _local4.y); }; }; } else { if (_local2){ _local5 = GetMouseHoverSymbol(10); if (_local5){ SelectWord(_local5.page, _local5.pos); Selected = true; }; } else { Selected = false; if (DocArea.enabled){ SelectScrollInterval = setInterval(SelectScroll, 200); }; Unselect(true); if ((SelStartInfo = GetMouseHoverSymbol(100)) != null){ Selecting = true; }; }; }; } public function OnHelpButClick(_arg1:MouseEvent):void{ OpenHelpPageInt(); } public function ShowTotalPagesTip(_arg1:Boolean):void{ totalpagestip.visible = ((_arg1) && (totalpagestip.parent.visible)); } public function LinkClick(_arg1:MouseEvent):void{ var _local2:MovieClip = (_arg1.target as MovieClip); _goToLinkTarget(_local2.LinkURL, _local2.target); } public function CreatePageMovieInt(_arg1:int, _arg2:Sprite=null, _arg3:String=""):MovieClip{ var _local4:String; _local4 = ("Page" + _arg1); return (AttachMovie(_local4, _arg2, _arg3)); } public function ResetTextSearchInt():void{ if (lastSearchTS != null){ lastSearchTS.setSelected(0, lastSearchTS.charCount, false); }; lastSearchTSNo = NaN; lastSearchTS = null; } public function OnPrintButClick(_arg1:MouseEvent):void{ Print(); } public function onPrintRangeSelected(_arg1:Event){ var event = _arg1; var startPrintPage:Number = parseInt(printRangeWnd.pagesFrom.text); var endPrintPage:Number = parseInt(printRangeWnd.pagesTo.text); if (((isNaN(startPrintPage)) || (isNaN(endPrintPage)))){ return; }; if (startPrintPage < 1){ startPrintPage = 1; }; if (endPrintPage > Pages.length){ endPrintPage = Pages.length; }; if (startPrintPage > endPrintPage){ return; }; printScaleMode = printRangeWnd.printScaleMode; try { localData.data.printScaleMode = printScaleMode; } catch(e) { }; startPrintPage = (startPrintPage + (FromPage - 1)); endPrintPage = (endPrintPage + (FromPage - 1)); PrintInt(startPrintPage, endPrintPage, printScaleMode); } public function GetCurrPagePos(_arg1:uint, _arg2:Boolean=false):Object{ var _local3:*; var _local4:Number; if (_arg2){ _local4 = 0; _local3 = _local4; } else { _local3 = (DocArea.width / 2); _local4 = (DocArea.height / 2); }; var _local5:Object = Pages[(_arg1 - 1)]; return ({y:(((DocArea.verticalScrollPosition + _local4) / DocAreaContent.scaleX) - _local5.movie.y), x:(((DocArea.horizontalScrollPosition + _local3) / DocAreaContent.scaleY) - _local5.movie.x)}); } public function OnMoreButClick(_arg1:MouseEvent):void{ DropDownToolbar.visible = !(DropDownToolbar.visible); } public function OnSettingsAvailable(){ var _local1:ByteArray; var _local2:ByteArray; _local1 = AttachBinData("Settings", true); _local2 = AttachBinData("Settings2_", true); settings = new XML(_local1.readUTFBytes(_local1.length)); settings2 = new XML(_local2.readUTFBytes(_local2.length)); totalPages = GetIntSetting("PageNum", 0); widths = GetSetting("Widths", "").split(/,/); heights = GetSetting("Heights", "").split(/,/); if (totalPages){ waitmsg = PlaceWaitMsg(this, "Loading..."); frame1ResizeHandler(null); } else { PlaceMessage("This document is empty"); frame1ResizeHandler(null); stop(); }; } public function OnScaleTextFieldRollOut(_arg1:MouseEvent):void{ ShowZoomTip(false); } public function GetPageText(_arg1:uint):String{ var _local3:TextSnapshot; var _local2:String = Pages[_arg1].text; if (_local2 == null){ _local3 = GetTextSnapshot(_arg1); _local2 = _local3.getText(0, _local3.charCount, false); Pages[_arg1].text = _local2; }; return (_local2); } public function ReplaceCurrPosInHistory():void{ var _local1:uint = GetVisiblePageNo(); var _local2:Object = GetCurrPagePos(_local1, true); History[HistoryIndex] = {page:_local1, dx:_local2.x, dy:_local2.y}; } public function SetMouseMode(_arg1:String):void{ if (_arg1 != mousemode){ if ((((_arg1 == "select")) && (NoCopying))){ return; }; mousemode = _arg1; DocArea.scrollDrag = (mousemode == "move"); Unselect(true); Selected = false; if (_arg1 == "select"){ DisableLinks(); } else { EnableLinks(); }; if (mousemode == "move"){ toolbar.moveMode.but.ShowState(2); toolbar.moveMode.but.normalState = 2; toolbar.selMode.but.ShowState(1); toolbar.selMode.but.normalState = 1; cursor = HandCursor; } else { toolbar.moveMode.but.ShowState(1); toolbar.moveMode.but.normalState = 1; toolbar.selMode.but.ShowState(2); toolbar.selMode.but.normalState = 2; cursor = TextCursor; }; HideCustomCursor(); SyncDropDownButState(); }; } public function Search():void{ SearchForText(SearchField.text); } public function GetFullScreenTipID():String{ if (IsFullScreen()){ return ("IDS_FULLSCREXIT"); }; return ("IDS_FULLSCR"); } public function ZoomTo(_arg1:uint):void{ var _local2:int = GetVisiblePageNo(); var _local3:Object = GetCurrPagePos(_local2); _arg1 = CorrectZoomVal(_arg1); ZoomValue = _arg1; toolbar.ZoomSlider.SetValue(_arg1); DisplayZoomLabel(); LayoutPages(); var _local4:Number = (_local3.x - (((DocArea.width / 2) - xinterstice) / DocArea.content.scaleX)); var _local5:Number = (_local3.y - (((DocArea.height / 2) - yinterstice) / DocArea.content.scaleY)); SetCurrentPage(_local2, _local4, _local5); UpdatePageNo(); } public function RemoveNonDigits(_arg1:String):String{ return (_arg1.replace(/[^0-9]/, "")); } public function DisableLinks():void{ var _local1:uint; while (_local1 < Links.length) { Links[_local1].removeEventListener(MouseEvent.CLICK, LinkClick); Links[_local1].removeEventListener(MouseEvent.ROLL_OVER, LinkMouseOver); Links[_local1].removeEventListener(MouseEvent.ROLL_OUT, LinkMouseOut); _local1++; }; } public function OnStageResize(_arg1:Event):void{ if (autonomous){ setSize(stage.stageWidth, stage.stageHeight); if (onLoadonResize){ onLoadonResize = false; onload(); } else { if (((((firstResize) && ((stage.stageWidth == 0)))) && ((stage.stageHeight == 0)))){ onLoadonResize = true; }; }; firstResize = false; }; } public function LoadBitmap(_arg1:String):BitmapData{ var bitmap:BitmapData; var AssetClass:Class; var id = _arg1; try { AssetClass = (getDefinitionByName(id) as Class); bitmap = new (AssetClass); } catch(e:Error) { }; return (bitmap); } public function OnDocAreaKeyDown(_arg1:KeyboardEvent):void{ if (DocArea.enabled){ switch (_arg1.keyCode){ case Keyboard.UP: _arg1.stopImmediatePropagation(); if (_arg1.ctrlKey){ PreviousPageInt(); } else { ScrollTo(NaN, (DocArea.verticalScrollPosition - DocArea.verticalLineScrollSize)); }; break; case Keyboard.DOWN: _arg1.stopImmediatePropagation(); if (_arg1.ctrlKey){ NextPageInt(); } else { ScrollTo(NaN, (DocArea.verticalScrollPosition + DocArea.verticalLineScrollSize)); }; break; case Keyboard.LEFT: _arg1.stopImmediatePropagation(); if (_arg1.ctrlKey){ _Back(); } else { ScrollTo((DocArea.horizontalScrollPosition - DocArea.horizontalLineScrollSize), NaN); }; break; case Keyboard.RIGHT: _arg1.stopImmediatePropagation(); if (_arg1.ctrlKey){ _Forward(); } else { ScrollTo((DocArea.horizontalScrollPosition + DocArea.horizontalLineScrollSize), NaN); }; break; case Keyboard.BACKSPACE: _Back(); break; case 85: if (_arg1.ctrlKey){ NextPageInt(); }; break; case 89: if (_arg1.ctrlKey){ PreviousPageInt(); }; break; case 107: if (_arg1.ctrlKey){ SetZoomLevel((ZoomValue + 10)); }; break; case 109: if (_arg1.ctrlKey){ SetZoomLevel((ZoomValue - 10)); }; break; }; } else { _arg1.stopImmediatePropagation(); }; if ((((_arg1.keyCode == 80)) && (_arg1.ctrlKey))){ Print(); }; } public function ShowTotalPages():void{ TotalPagesField.text = ("/ " + new String(Pages.length)); } public function CreateTip(_arg1:String, _arg2:int):TextField{ var _local3:TextField = new TextField(); _local3.accessibilityProperties = new AccessibilityProperties(); _local3.accessibilityProperties.silent = true; _local3.y = toppanelheight; _local3.visible = false; _local3.border = true; _local3.borderColor = 0; _local3.background = true; _local3.backgroundColor = 16777185; _local3.selectable = false; _local3.defaultTextFormat = new TextFormat("Tahoma", 12, 0); _local3.autoSize = TextFieldAutoSize.LEFT; _local3.text = _arg1; _local3.x = (_arg2 - (_local3.width / 2)); toolbar.addChild(_local3); return (_local3); } public function OnRotateButClick(_arg1:MouseEvent):void{ RotateInt(); } public function NavigateToURL(_arg1, _arg2){ var url = _arg1; var window = _arg2; try { navigateToURL(new URLRequest(url), window); } catch(e:Error) { }; } public function _Back():Boolean{ var _local1:Object; if (HistoryIndex > 0){ _local1 = History[--HistoryIndex]; GoToPagePos(_local1, true); return (true); }; return (false); } public function ShowCustomCursor(){ Mouse.hide(); cursor.visible = true; root.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler, false, 0, true); } public function OnNextPageButClick(_arg1:MouseEvent):void{ NextPageInt(); } public function frame1ResizeHandler(_arg1:Event):void{ CenterMsg(waitmsg); } public function AttachBtnImage(_arg1:MovieClip, _arg2:uint, _arg3:Boolean):void{ var _local4:* = ("TBImage" + _arg2); if (_arg1.image){ _arg1.removeChild(_arg1.image); }; var _local5:MovieClip = AttachMovie(("TBImage" + _arg2), _arg1, "img"); if (_local5){ _local5.mouseEnabled = false; _local5.x = Math.round(((_arg1.width - _local5.width) / 2)); _local5.y = Math.round(((_arg1.height - _local5.height) / 2)); _arg1.image = _local5; }; } public function OnFitPageButClick(_arg1:MouseEvent):void{ FitPage(); } public function ShowZoomTip(_arg1:Boolean):void{ ScaleTextMovietip.visible = ((((_arg1) && (toolbar.ScaleTextMovie.visible))) && (!((stage.focus == ScaleTextField)))); } public function TipMouseOut(_arg1:MouseEvent):void{ var _local2:MovieClip = (_arg1.currentTarget as MovieClip); var _local3:TextField = _local2.tip; _local3.visible = false; _local3.x = _local2.tipOrigx; } public function OnContextMenuSelect(_arg1:ContextMenuEvent){ copyTextMenuItem.visible = ((!(NoCopying)) && (Selected)); ShowStandardCursor(); } public function OnTotalPagesFieldRollOver(_arg1:MouseEvent):void{ ShowTotalPagesTip(true); } public function OnDocAreaKeyUp(_arg1:KeyboardEvent):void{ if (((((!(NoCopying)) && (_arg1.ctrlKey))) && ((((_arg1.keyCode == 67)) || ((_arg1.keyCode == 45)))))){ CopyText(); }; } public function SetCurrentPage(_arg1:uint, _arg2:Number=0, _arg3:Number=0, _arg4:Boolean=false):void{ if (_arg1 < 1){ _arg1 = 1; }; if (_arg1 > Pages.length){ _arg1 = Pages.length; }; _arg2 = (_arg2 * DocAreaContent.scaleX); _arg3 = (_arg3 * DocAreaContent.scaleY); var _local5:Number = ((Pages[(_arg1 - 1)].movie.y * DocAreaContent.scaleY) + _arg3); var _local6:Number = ((Pages[(_arg1 - 1)].movie.x * DocAreaContent.scaleX) + _arg2); if (!_arg4){ _local5 = (_local5 - yinterstice); _local6 = (_local6 - xinterstice); }; ScrollTo(_local6, _local5, false); UpdatePageNo(_arg1); } public function AddToHistory(_arg1:Object){ ReplaceCurrPosInHistory(); var _local2 = ++HistoryIndex; History[_local2] = _arg1; History.splice((HistoryIndex + 1), History.length); } public function FitPage():void{ if (scaleMode != "page"){ SetZoomState("page"); SetBaseParameters(); }; SetCurrentPage(GetCurrentPage()); } function __setAcc_toolbar_Scene1_Layer1_1(){ toolbar.accessibilityProperties = new AccessibilityProperties(); toolbar.accessibilityProperties.name = "Print2Flash Toolbar"; } public function PrintInt(_arg1:Number, _arg2:Number, _arg3:String):void{ var printJob:PrintJob; var jobStarted:Boolean; var pageno:uint; var page:Object; var pageAdded:Boolean; var pageMovie:MovieClip; var contPageMovie:MovieClip; var printArea:Rectangle; var realPageMovie:MovieClip; var paWidth:Number; var paHeight:Number; var scale:Number; var scaleRotated:Number; var startPrintPage = _arg1; var endPrintPage = _arg2; var printScaleMode = _arg3; if (!NoPrinting){ printJob = new PrintJob(); try { jobStarted = printJob.start(); } catch(e:Error) { jobStarted = false; }; if (jobStarted){ pageno = startPrintPage; while (pageno <= endPrintPage) { page = DocPages[(pageno - 1)]; pageAdded = false; pageMovie = CreatePageMovieInt(pageno); if (pageMovie){ contPageMovie = new MovieClip(); addChild(contPageMovie); switch (printScaleMode){ case "noscale": realPageMovie = pageMovie; pageMovie = new MovieClip(); contPageMovie.addChild(pageMovie); paWidth = ((printJob.pageWidth / 72) * Resolution); paHeight = ((printJob.pageHeight / 72) * Resolution); DrawRect(pageMovie, 0, 0, (paWidth * 1.1), (paHeight * 1.1), 0xFFFFFF, 0xFFFFFF); pageMovie.addChild(realPageMovie); realPageMovie.x = ((paWidth - ((printJob.paperWidth / 72) * Resolution)) / 2); realPageMovie.y = ((paHeight - ((printJob.paperHeight / 72) * Resolution)) / 2); printArea = new Rectangle(0, 0, paWidth, paHeight); pageMovie.scaleX = (pageMovie.scaleY = (72 / Resolution)); break; default: contPageMovie.addChild(pageMovie); scale = Math.min((printJob.pageWidth / page.realWidth), (printJob.pageHeight / page.realHeight)); scaleRotated = Math.min((printJob.pageWidth / page.realHeight), (printJob.pageHeight / page.realWidth)); if (scaleRotated > scale){ scale = scaleRotated; pageMovie.rotation = 270; pageMovie.y = (page.realWidth * scale); }; pageMovie.scaleX = (pageMovie.scaleY = scale); printArea = new Rectangle(0, 0, (page.realWidth - 1), (page.realHeight - 1)); break; }; scale = Math.min((MovieWidth / contPageMovie.width), (MovieHeight / contPageMovie.height)); contPageMovie.scaleX = (contPageMovie.scaleY = scale); try { printJob.addPage(pageMovie, printArea, new PrintJobOptions(PrintAsBitmap)); pageAdded = true; } catch(e:Error) { }; removeChild(contPageMovie); }; if (!pageAdded){ break; }; pageno = (pageno + 1); }; printJob.send(); printJob = null; }; }; } public function GetFullScreenButID():int{ if (IsFullScreen()){ return (21); }; return (20); } public function _goToLinkTarget(_arg1:String, _arg2:String):Boolean{ if (_arg1.substr(0, 7) == "anchor:"){ return (GoToBookmark(_arg1.substr(7))); }; NavigateToURL(_arg1, _arg2); return (true); } public function getSelectedTextInt():String{ var _local3:TextSnapshot; var _local4:String; var _local1 = ""; var _local2:uint; while (_local2 < Pages.length) { _local3 = Pages[_local2].ts; if (_local3 != null){ _local4 = _local3.getSelectedText(true); if (_local4 != ""){ _local1 = (_local1 + (_local4 + String.fromCharCode(13, 10))); }; }; _local2++; }; return (_local1); } public function GetSetting(_arg1:String, _arg2:Object):String{ return (GetSettingInt(_arg1, _arg2, settings)); } public function GoToPagePos(_arg1:Object, _arg2:Boolean){ var _local3:Number; var _local4:Number; var _local5:Object = Pages[(_arg1.page - 1)]; switch (Rotation){ case 90: _local3 = (_local5.realHeight - _arg1.dy); _local4 = _arg1.dx; break; case 180: _local3 = (_local5.realWidth - _arg1.dx); _local4 = (_local5.realHeight - _arg1.dy); break; case 270: _local3 = _arg1.dy; _local4 = (_local5.realWidth - _arg1.dx); break; default: _local3 = _arg1.dx; _local4 = _arg1.dy; }; SetCurrentPage(_arg1.page, _local3, _local4, _arg2); } public function SelectWord(_arg1:uint, _arg2:uint){ var _local4:*; var _local5:int; var _local3:String = GetPageText(_arg1); if (IsWordSym(_local3.substr(_arg2, 1))){ _local5 = FindNonWord(_local3, _arg2); if (_local5 == -1){ _local5 = _local3.length; }; _local4 = FindLastNonWord(_local3, _arg2); if (_local4 == -1){ _local4 = 0; } else { _local4++; }; } else { _local4 = _arg2; _local5 = (_arg2 + 1); }; Unselect(); var _local6:TextSnapshot = GetTextSnapshot(_arg1); _local6.setSelected(_local4, _local5, true); SelStartInfo = {page:_arg1, pos:_local4}; SelEndInfo = {page:_arg1, pos:(_local5 - 1)}; } public function ScrollTo(_arg1:Number, _arg2:Number, _arg3:Boolean=true):void{ var _local4:Boolean; if (!isNaN(_arg1)){ if (_arg1 > DocArea.maxHorizontalScrollPosition){ _arg1 = DocArea.maxHorizontalScrollPosition; } else { if (_arg1 < 0){ _arg1 = 0; }; }; if (_arg1 != DocArea.horizontalScrollPosition){ DocArea.horizontalScrollPosition = _arg1; _local4 = true; }; }; if (!isNaN(_arg2)){ if (_arg2 > DocArea.maxVerticalScrollPosition){ _arg2 = DocArea.maxVerticalScrollPosition; } else { if (_arg2 < 0){ _arg2 = 0; }; }; if (_arg2 != DocArea.verticalScrollPosition){ DocArea.verticalScrollPosition = _arg2; _local4 = true; }; }; if (_arg3){ UpdatePageNo(); }; } public function SetInitialPage():void{ SetCurrentPage(GetInitParam("INITIAL_PAGE", "1")); } public function SetInitialPos():void{ var _local1:String = GetInitParam("INITIAL_BOOKMARK", ""); if (_local1){ if (!GoToBookmark(_local1, false)){ SetInitialPage(); }; } else { SetInitialPage(); }; } public function SetZoomState(_arg1:String):void{ scaleMode = _arg1; if (scaleMode == "page"){ toolbar.scalePage.but.ShowState(2); toolbar.scalePage.but.normalState = 2; } else { toolbar.scalePage.but.ShowState(1); toolbar.scalePage.but.normalState = 1; }; if (scaleMode == "width"){ toolbar.scaleWidth.but.ShowState(2); toolbar.scaleWidth.but.normalState = 2; } else { toolbar.scaleWidth.but.ShowState(1); toolbar.scaleWidth.but.normalState = 1; }; SyncDropDownButState(); } public function CopyText():void{ var _local1:String = getSelectedTextInt(); if (_local1 != ""){ System.setClipboard(_local1); }; } public function OnStageKeyDown(_arg1:KeyboardEvent):void{ if (_arg1.keyCode != 13){ notfoundtip.visible = false; }; } public function SetInitialView():void{ _SetCurrentZoom(GetInitParam("INITIAL_VIEW", "width")); RotateTo(GetInitParam("INITIAL_ROTATE", "0")); } public function CreateTips():void{ var _local2:Object; var _local3:MovieClip; var _local4:TextField; var _local1:uint; while (_local1 < TBButtons.length) { _local2 = TBButtons[_local1]; if (_local2.tip){ _local3 = _local2.movie; _local4 = CreateTip(locale.loadString(_local2.tip), (_local3.x + (_local3.width / 2))); _local3.tip = _local4; if (!_local2.notiphandler){ _local3.addEventListener(MouseEvent.ROLL_OVER, TipMouseOver, false, 0, true); _local3.addEventListener(MouseEvent.ROLL_OUT, TipMouseOut, false, 0, true); }; if (_local3 == toolbar.searchPatternmc){ searchPatternmctip = _local4; }; if (_local3 == toolbar.ScaleTextMovie){ ScaleTextMovietip = _local4; }; }; _local1++; }; notfoundtip = CreateTip(locale.loadString("IDS_NOTFOUND"), (toolbar.searchPatternmc.x + (toolbar.searchPatternmc.width / 2))); pagenotip = CreateTip(locale.loadString("IDS_GOTOPAGE"), ((toolbar.PageNoMovie.x + toolbar.PageNoMovie.PageNoFieldMC.x) + (toolbar.PageNoMovie.PageNoFieldMC.width / 2))); totalpagestip = CreateTip(locale.loadString("IDS_TOTPAGES"), ((toolbar.PageNoMovie.x + toolbar.PageNoMovie.TotalPagesMC.x) + (toolbar.PageNoMovie.TotalPagesMC.width / 2))); SetupFSButton(); if (Accessibility.active){ Accessibility.updateProperties(); }; } public function OnPageNoFieldKeyDown(_arg1:KeyboardEvent):void{ if (_arg1.charCode == 13){ ProcessPageNo(); }; } public function GetDocHitPos(_arg1:Number, _arg2:Number):Object{ var _local4:MovieClip; var _local5:Point; var _local3:uint; while (_local3 < Pages.length) { if (Pages[_local3].movie.hitTestPoint(_arg1, _arg2)){ _local4 = Pages[_local3].movie; _local5 = new Point(_local4.x, _local4.y); _local5 = _local4.parent.localToGlobal(_local5); return ({page:(_local3 + 1), x:((_arg1 - _local5.x) / DocArea.content.scaleX), y:((_arg2 - _local5.y) / DocArea.content.scaleY)}); }; _local3++; }; return (null); } public function Print(_arg1:Number=1, _arg2:Number=0, _arg3:String=""){ if (!NoPrinting){ if (!_arg2){ _arg2 = Pages.length; }; if (_arg3 == ""){ _arg3 = printScaleMode; }; DropDownToolbar.visible = false; printRangeWnd.show(this, MovieWidth, MovieHeight, _arg1, _arg2, _arg3); }; } public function ShowPageNoFieldTip(_arg1:Boolean):void{ pagenotip.visible = ((((_arg1) && (pagenotip.parent.visible))) && (!((stage.focus == PageNoField)))); } public function GetCurrentPage():uint{ return (PageNo); } public function OnScaleTextFieldRollOver(_arg1:MouseEvent):void{ ShowZoomTip(true); } public function LayoutPages():void{ var _local6:Object; var _local7:MovieClip; var _local8:MovieClip; var _local9:int; var _local10:Number; var _local11:uint; var _local12:uint; var _local13:int; var _local14:int; var _local1:int = xmargin; var _local2:int = ymargin; var _local3:int; ScaleFactor = ((ZoomValue / 100) * zoomCorr); DocAreaContent.scaleX = (DocAreaContent.scaleY = ScaleFactor); var _local4:uint; var _local5:int; while (_local5 < Pages.length) { _local6 = Pages[_local5]; _local7 = _local6.movie; _local8 = _local6.realMovie; if (((_local1 + (_local6.width * ScaleFactor)) + xmargin) > AreaWidth){ if (_local3 > 0){ _local2 = (_local2 + ((_local3 * ScaleFactor) + yinterstice)); }; _local1 = xmargin; _local3 = 0; }; _local6.y = _local2; _local7.x = (_local1 / ScaleFactor); _local7.y = (_local2 / ScaleFactor); _local8.rotation = Rotation; switch (Rotation){ case 0: _local8.x = (_local8.y = 0); break; case 90: _local8.x = _local6.width; _local8.y = 0; break; case 180: _local8.x = _local6.width; _local8.y = _local6.height; break; case 270: _local8.x = 0; _local8.y = _local6.height; break; }; _local1 = (_local1 + ((_local6.width * ScaleFactor) + xinterstice)); if (_local6.height > _local3){ _local3 = _local6.height; }; _local4 = Math.max(_local1, _local4); _local5++; }; _local5 = 0; while (_local5 < Pages.length) { _local9 = _local5; _local10 = Pages[_local5].movie.y; _local11 = uint.MAX_VALUE; _local12 = uint.MIN_VALUE; do { _local6 = Pages[_local5]; _local11 = Math.min(_local11, _local6.movie.x); _local12 = Math.max(_local12, (_local6.movie.x + _local6.width)); _local5++; } while ((((_local5 < Pages.length)) && ((_local10 == Pages[_local5].movie.y)))); _local13 = (((ClientWidth / ScaleFactor) - (_local12 - _local11)) / 2); if (_local13 > 0){ _local14 = _local9; while (_local14 < _local5) { Pages[_local14].movie.x = (Pages[_local14].movie.x + _local13); _local14++; }; }; }; BottomArea.y = (((_local2 + yinterstice) + (_local3 * ScaleFactor)) / ScaleFactor); BottomArea.height = (ymargin / ScaleFactor); BottomArea.x = (_local4 / ScaleFactor); BottomArea.width = (xmargin / ScaleFactor); DocArea.update(); } public function mouseOutHandler(_arg1:MouseEvent):void{ ShowStandardCursor(); } public function LinkMouseOut(_arg1:MouseEvent):void{ ShowCustomCursor(); } public function CorrectZoomVal(_arg1:Number):uint{ if (_arg1 > maxZoom){ _arg1 = maxZoom; }; if (_arg1 < minZoom){ _arg1 = minZoom; }; return (Math.floor(_arg1)); } public function CalcScrollSteps():void{ DocArea.verticalLineScrollSize = (DocArea.height / 20); DocArea.verticalPageScrollSize = (DocArea.height - DocArea.verticalLineScrollSize); DocArea.horizontalLineScrollSize = (DocArea.width / 20); DocArea.horizontalPageScrollSize = (DocArea.width - DocArea.horizontalLineScrollSize); } public function OnStageMouseLeave(_arg1:Event):void{ mouseOutHandler(new MouseEvent(MouseEvent.MOUSE_OUT)); } function __setAcc_HandCursor_Scene1_Layer1_1(){ HandCursor.accessibilityProperties = new AccessibilityProperties(); HandCursor.accessibilityProperties.silent = true; } public function IsWordSym(_arg1:String):Boolean{ var _local2:Number = _arg1.charCodeAt(0); return ((((((((((_arg1 >= "A")) && ((_arg1 <= "Z")))) || ((((_arg1 >= "a")) && ((_arg1 <= "z")))))) || ((((_arg1 >= "0")) && ((_arg1 <= "9")))))) || ((((((((_local2 >= 128)) && (!((((_local2 >= 0x2000)) && ((_local2 <= 8303))))))) && (!((((_local2 >= 160)) && ((_local2 <= 191))))))) && (!((((_local2 >= 0x2E00)) && ((_local2 <= 11903))))))))); } public function SearchForText(_arg1:String):Boolean{ return ((notfoundtip.visible = (SearchAndHighlightText(_arg1) == -1))); } public function SyncDropDownButState():void{ var _local1:*; var _local2:MovieClip; if (DropDownToolbar){ _local1 = 0; while (_local1 < DropDownToolbar.Buttons.length) { _local2 = DropDownToolbar.Buttons[_local1]; _local2.but.normalState = _local2.button.movie.but.normalState; _local2.but.ShowState(_local2.but.normalState); _local1++; }; }; } public function OnPageNoFieldRollOver(_arg1:MouseEvent):void{ ShowPageNoFieldTip(true); } public function OnDocAreaContentRollOver(_arg1:MouseEvent):void{ cursor.x = _arg1.stageX; cursor.y = _arg1.stageY; ShowCustomCursor(); } public function GetInitParam(_arg1:String, _arg2:Object){ var _local3:* = loaderInfo.parameters[_arg1]; if (_local3 == null){ _local3 = _arg2; }; return (_local3); } public function CenterMsg(_arg1:MovieClip){ if (_arg1){ _arg1.x = ((stage.stageWidth - _arg1.width) / 2); _arg1.y = ((stage.stageHeight - _arg1.height) / 2); }; } public function ProcessZoomEntry():void{ SetZoomLevel(new Number(RemoveNonDigits(ScaleTextField.text))); } public function PlaceWaitMsg(_arg1:Sprite, _arg2:String):MovieClip{ var _local3 = "waitmsg"; var _local4:MovieClip = AttachMovie(_local3, _arg1, _local3); _local4.msg.autoSize = TextFieldAutoSize.LEFT; _local4.msg.text = _arg2; return (_local4); } public function OpenInNewWindowInt():void{ DropDownToolbar.visible = false; NavigateToURL(loaderInfo.url, "_blank"); } public function OnScaleTextFieldFocusOut(_arg1:FocusEvent):void{ ProcessZoomEntry(); } public function OnPageNoFieldFocusIn(_arg1:FocusEvent):void{ PageNoInitVal = PageNoField.text; ShowPageNoFieldTip(false); } public function OnFitWidthButClick(_arg1:MouseEvent):void{ FitWidth(); } public function SelectScroll(){ if (DocArea.mouseY > DocArea.height){ ScrollTo(undefined, (DocArea.verticalScrollPosition + interpolate((DocArea.verticalLineScrollSize * MinSelVScrollRatio), (DocArea.verticalLineScrollSize * MaxSelVScrollRatio), DocArea.height, (DocArea.height * 2), DocArea.mouseY))); } else { if (DocArea.mouseY < 0){ ScrollTo(undefined, (DocArea.verticalScrollPosition - interpolate((DocArea.verticalLineScrollSize * MinSelVScrollRatio), (DocArea.verticalLineScrollSize * MaxSelVScrollRatio), 0, -(DocArea.height), DocArea.mouseY))); } else { if (DocArea.mouseX > DocArea.width){ ScrollTo((DocArea.horizontalScrollPosition + interpolate((DocArea.horizontalLineScrollSize * MinSelHScrollRatio), (DocArea.horizontalLineScrollSize * MaxSelHScrollRatio), DocArea.width, (DocArea.width * 2), DocArea.mouseX)), undefined); } else { if (DocArea.mouseX < 0){ ScrollTo((DocArea.horizontalScrollPosition - interpolate((DocArea.horizontalLineScrollSize * MinSelHScrollRatio), (DocArea.horizontalLineScrollSize * MaxSelHScrollRatio), 0, -(DocArea.width), DocArea.mouseX)), undefined); }; }; }; }; } public function AttachBtnImages(){ var _local4:*; var _local1:* = 0; while (_local1 < TBButtons.length) { _local4 = TBButtons[_local1]; if (_local4.id){ AttachBtnImage(_local4.movie, _local4.id, _local4.nocoladj); }; _local1++; }; AttachBtnImage(toolbar.more, 16, false); toolbar.ZoomSlider.SetRange(minZoom, maxZoom); toolbar.ZoomSlider.y = Math.round(((Deftoppanelheight - toolbar.ZoomSlider.height) / 2)); toolbar.ZoomSlider.Init(); var _local2:MovieClip = toolbar.ZoomSlider.getChildByName("img"); if (_local2){ toolbar.ZoomSlider.swapChildren(_local2, toolbar.ZoomSlider.SliderHandle); toolbar.ZoomSlider.SliderHandleBtn.y = Math.round(((-((toolbar.ZoomSlider.SliderHandleBtn.height - _local2.height)) / 2) + GetIntSetting("ZoomHandleOffset", 0))); }; var _local3:MovieClip = toolbar.logo.getChildByName("img"); if (_local3){ _local3.y = Math.round(((29 - _local3.height) / 2)); }; } public function UpdateMaxPageParams(_arg1:Object):void{ if (_arg1.width > MaxPageWidth){ MaxPageWidth = _arg1.width; }; if (_arg1.height > MaxPageHeight){ MaxPageHeight = _arg1.height; }; } public function UpdatePageNo(_arg1:Number=0):void{ if (!_arg1){ _arg1 = GetVisiblePageNo(); }; PageNoField.text = _arg1.toString(); if (PageNo != _arg1){ PageNo = _arg1; }; } function __setTab_HandCursor_Scene1_Layer1_1(){ HandCursor.tabIndex = 0; } public function OnPageNoFieldFocusOut(_arg1:FocusEvent):void{ if (PageNoInitVal != PageNoField.text){ ProcessPageNo(); }; } public function OnTotalPagesFieldRollOut(_arg1:MouseEvent):void{ ShowTotalPagesTip(false); } public function ScanPages(_arg1:uint):void{ var _local3:*; var _local4:*; var _local5:*; var _local6:*; var _local7:*; var _local8:*; var _local9:*; var _local10:*; var _local11:*; var _local12:*; var _local2:uint = _arg1; do { _local3 = DocPages[(_local2 - 1)].movie; _local4 = DocPages[(_local2 - 1)].realMovie; _local5 = _local3.x; _local6 = _local3.y; _local7 = _local4.x; _local8 = _local4.y; _local9 = _local4.rotation; _local10 = AttachPageMovie(_local2); _local11 = !((_local10 == null)); if (_local11){ if ((((_local2 < FromPage)) || ((_local2 > ToPage)))){ DocAreaContent.removeChild(_local10); } else { _local10.x = _local5; _local10.y = _local6; _local12 = _local10.getChildByName("realMovie"); _local12.x = _local7; _local12.y = _local8; _local12.rotation = _local9; }; loadedPages = _local2; UpdateWaitMsg(); }; _local2++; } while (((_local11) && ((_local2 <= totalPages)))); } public function AttachBinData(_arg1:String, _arg2:Boolean=false):ByteArray{ var ba:ByteArray; var AssetClass:Class; var id = _arg1; var fromExtDoc = _arg2; try { AssetClass = (getDefinitionByName(id) as Class); ba = new (AssetClass); } catch(e) { }; return (ba); } public function GetIntSetting(_arg1:String, _arg2:Object):int{ return (parseInt(GetSetting(_arg1, _arg2))); } public function OnFullScreen(_arg1:FullScreenEvent):void{ if (((!(_arg1.fullScreen)) && (!(isNaN(beforeFSWidth))))){ setSize(beforeFSWidth, beforeFSHeight); beforeFSWidth = NaN; }; SetupFSButton(); LayoutToolbar(); } public function onload():void{ SetMouseMode("move"); SetInitialView(); if (autonomous){ stage.dispatchEvent(new Event(Event.RESIZE)); } else { setSize(550, 400); }; SetInitialPos(); ShowTotalPages(); } public function GetSettingInt(_arg1:String, _arg2:Object, _arg3:XML, _arg4:XML=null):String{ var _local5:String = _arg3.attribute(_arg1); if (((!(_local5)) && (_arg4))){ _local5 = _arg4.attribute(_arg1); }; if (!_local5){ _local5 = String(_arg2); }; return (_local5); } public function OnLogoClick(_arg1:MouseEvent):void{ NavigateToURL(LogoURL, "_blank"); } public function GetMouseHoverSymbol(_arg1:Number):Object{ var _local3:*; var _local4:TextSnapshot; var _local5:Number; var _local2:uint; while (_local2 < Pages.length) { _local3 = GetMousePos(); if (Pages[_local2].realMovie.hitTestPoint(_local3.x, _local3.y)){ _local4 = GetTextSnapshot(_local2); _local5 = _local4.hitTestTextNearPos(Pages[_local2].realMovie.mouseX, Pages[_local2].realMovie.mouseY, _arg1); if (_local5 != -1){ return ({page:_local2, pos:_local5}); }; }; _local2++; }; return (null); } public function OnSearchFieldKeyDown(_arg1:KeyboardEvent):void{ if (_arg1.charCode == 13){ Search(); }; } public function FindNonWord(_arg1:String, _arg2:uint):int{ var _local3:int = _arg2; while (_local3 < _arg1.length) { if (!IsWordSym(_arg1.charAt(_local3))){ return (_local3); }; _local3++; }; return (-1); } public function setSize(_arg1:uint, _arg2:uint):void{ DocArea.y = toppanelheight; MovieWidth = _arg1; MovieHeight = _arg2; DocArea.width = MovieWidth; DocArea.height = (MovieHeight - toppanelheight); CalcScrollSteps(); SetBaseParameters(); LayoutPages(); LayoutToolbar(); ModalScreen.resizeContainer(_arg1, _arg2); } function __setTab_DocArea_Scene1_Layer1_1(){ DocArea.tabIndex = 17; } public function OnSliderChange(_arg1:Event):void{ ZoomTo(toolbar.ZoomSlider.GetValue()); SetZoomState("none"); } public function OpenHelpPageInt():void{ DropDownToolbar.visible = false; NavigateToURL(HelpPageURL, "_blank"); } public function FillWithBitmap(_arg1:MovieClip, _arg2:BitmapData, _arg3:int, _arg4:int, _arg5:int, _arg6:int, _arg7:Boolean):void{ var matrix:*; var movie = _arg1; var bitmap = _arg2; var x1 = _arg3; var y1 = _arg4; var x2 = _arg5; var y2 = _arg6; var scaleToFit = _arg7; var _local9 = movie.graphics; with (_local9) { if (scaleToFit){ matrix = new Matrix(); matrix.scale(((x2 - x1) / bitmap.width), ((y2 - y1) / bitmap.height)); }; beginBitmapFill(bitmap, matrix, true); moveTo(x1, y1); lineTo(x1, y2); lineTo(x2, y2); lineTo(x2, y1); lineTo(x1, y1); endFill(); }; } public function DropDowbButHandler(_arg1:MouseEvent):void{ _arg1.currentTarget.button.movie.but.dispatchEvent(new MouseEvent(MouseEvent.CLICK)); } public function SetupFSButton():void{ var _local1:* = toolbar.fullscreen; AttachBtnImage(_local1, GetFullScreenButID(), false); var _local2:TextField = _local1.tip; _local2.visible = false; _local2.text = locale.loadString(GetFullScreenTipID()); _local1.tipOrigx = (_local2.x = ((_local1.x + (_local1.width / 2)) - (_local2.width / 2))); } public function OnScaleTextFieldKeyDown(_arg1:KeyboardEvent):void{ if (_arg1.charCode == 13){ ProcessZoomEntry(); }; } public function PreviousPageInt():void{ SetCurrentPage((GetCurrentPage() - 1)); } public function AttachMovie(_arg1:String, _arg2:Sprite=null, _arg3:String=""):MovieClip{ var movie:MovieClip; var AssetClass:Class; var id = _arg1; var parent = _arg2; var name = _arg3; try { AssetClass = (getDefinitionByName(id) as Class); movie = new (AssetClass); if (name.length){ movie.name = name; }; if (parent){ parent.addChild(movie); }; } catch(e:Error) { }; return (movie); } public function EnableLinks():void{ var _local1:uint; while (_local1 < Links.length) { Links[_local1].addEventListener(MouseEvent.CLICK, LinkClick, false, 0, true); Links[_local1].addEventListener(MouseEvent.ROLL_OVER, LinkMouseOver, false, 0, true); Links[_local1].addEventListener(MouseEvent.ROLL_OUT, LinkMouseOut, false, 0, true); _local1++; }; } public function ProcessPageNo(){ var _local1:String = PageNoField.text; SetCurrentPage(new Number(_local1)); PageNoInitVal = PageNoField.text; } public function OnCopyMenuItemSelect(_arg1:ContextMenuEvent){ if (!NoCopying){ CopyText(); }; } public function OnSearchFieldFocusIn(_arg1:FocusEvent):void{ ShowSearchPatTip(false); } public function GoToBookmark(_arg1:String, _arg2:Boolean=true){ var _local3:Object = BMDef[_arg1]; if (((((_local3) && ((_local3.page >= 1)))) && ((_local3.page <= totalPages)))){ if (_arg2){ AddToHistory(_local3); }; GoToPagePos(_local3, false); return (true); }; return (false); } public function CreateLinks(_arg1:uint):void{ var _local3:uint; var _local4:Object; var _local5:MovieClip; var _local6:MovieClip; var _local2:Object = LinkDef[("p" + _arg1)]; if (_local2){ _local3 = 0; while (_local3 < _local2.length) { _local4 = _local2[_local3]; _local5 = DocPages[(_arg1 - 1)].realMovie; _local6 = (_local5.getChildByName(_local4.name) as MovieClip); _local6.LinkURL = _local4.url; _local6.target = _local4.target; _local6.pageno = _arg1; _local6.useHandCursor = true; _local6.buttonMode = true; _local6.addEventListener(MouseEvent.CLICK, LinkClick, false, 0, true); _local6.addEventListener(MouseEvent.ROLL_OVER, LinkMouseOver, false, 0, true); _local6.addEventListener(MouseEvent.ROLL_OUT, LinkMouseOut, false, 0, true); Links.push(_local6); _local3++; }; }; } } }//package print2flash_flaSection 26//MCSlider_47 (print2flash_fla.MCSlider_47) package print2flash_fla { import flash.display.*; import flash.accessibility.*; public dynamic class MCSlider_47 extends MovieClip { public var SliderHandleBtn:ImgButton; public function MCSlider_47(){ __setAcc_SliderHandleBtn_MCSlider_Layer1_0(); __setTab_SliderHandleBtn_MCSlider_Layer1_0(); } function __setTab_SliderHandleBtn_MCSlider_Layer1_0(){ SliderHandleBtn.tabIndex = 0; } function __setAcc_SliderHandleBtn_MCSlider_Layer1_0(){ SliderHandleBtn.accessibilityProperties = new AccessibilityProperties(); SliderHandleBtn.accessibilityProperties.silent = true; } } }//package print2flash_flaSection 27//Timeline_30 (print2flash_fla.Timeline_30) package print2flash_fla { import flash.display.*; import flash.text.*; import flash.accessibility.*; public dynamic class Timeline_30 extends MovieClip { public var ScaleTextField:TextField; public function Timeline_30(){ __setAcc_ScaleTextField_(); __setTab_ScaleTextField_(); } function __setTab_ScaleTextField_(){ ScaleTextField.tabIndex = 5; } function __setAcc_ScaleTextField_(){ ScaleTextField.accessibilityProperties = new AccessibilityProperties(); ScaleTextField.accessibilityProperties.name = "Zoom"; } } }//package print2flash_flaSection 28//Timeline_31 (print2flash_fla.Timeline_31) package print2flash_fla { import flash.display.*; import flash.accessibility.*; public dynamic class Timeline_31 extends MovieClip { public var PageNoFieldMC:MovieClip; public var TotalPagesMC:MovieClip; public function Timeline_31(){ __setAcc_TotalPagesMC_(); __setTab_TotalPagesMC_(); __setTab_PageNoFieldMC_(); } function __setAcc_TotalPagesMC_(){ TotalPagesMC.accessibilityProperties = new AccessibilityProperties(); TotalPagesMC.accessibilityProperties.silent = true; } function __setTab_PageNoFieldMC_(){ PageNoFieldMC.tabIndex = 0; } function __setTab_TotalPagesMC_(){ TotalPagesMC.tabIndex = 0; } } }//package print2flash_flaSection 29//Timeline_32 (print2flash_fla.Timeline_32) package print2flash_fla { import flash.display.*; import flash.text.*; import flash.accessibility.*; public dynamic class Timeline_32 extends MovieClip { public var TotalPages:TextField; public function Timeline_32(){ __setAcc_TotalPages_(); __setTab_TotalPages_(); } function __setTab_TotalPages_(){ TotalPages.tabIndex = 0; } function __setAcc_TotalPages_(){ TotalPages.accessibilityProperties = new AccessibilityProperties(); TotalPages.accessibilityProperties.silent = true; } } }//package print2flash_flaSection 30//Timeline_33 (print2flash_fla.Timeline_33) package print2flash_fla { import flash.display.*; import flash.text.*; import flash.accessibility.*; public dynamic class Timeline_33 extends MovieClip { public var PageNoField:TextField; public function Timeline_33(){ __setAcc_PageNoField_(); __setTab_PageNoField_(); } function __setTab_PageNoField_(){ PageNoField.tabIndex = 9; } function __setAcc_PageNoField_(){ PageNoField.accessibilityProperties = new AccessibilityProperties(); PageNoField.accessibilityProperties.name = "Go to page"; } } }//package print2flash_flaSection 31//Timeline_50 (print2flash_fla.Timeline_50) package print2flash_fla { import flash.display.*; import flash.text.*; import flash.accessibility.*; public dynamic class Timeline_50 extends MovieClip { public var searchPattern:TextField; public function Timeline_50(){ __setAcc_searchPattern_(); __setTab_searchPattern_(); } function __setTab_searchPattern_(){ searchPattern.tabIndex = 11; } function __setAcc_searchPattern_(){ searchPattern.accessibilityProperties = new AccessibilityProperties(); searchPattern.accessibilityProperties.name = "Search"; } } }//package print2flash_flaSection 32//button (button) package { import flash.display.*; public dynamic class button extends SimpleButton { } }//packageSection 33//Button_disabledSkin (Button_disabledSkin) package { import flash.display.*; public dynamic class Button_disabledSkin extends MovieClip { } }//packageSection 34//Button_downSkin (Button_downSkin) package { import flash.display.*; public dynamic class Button_downSkin extends MovieClip { } }//packageSection 35//Button_emphasizedSkin (Button_emphasizedSkin) package { import flash.display.*; public dynamic class Button_emphasizedSkin extends MovieClip { } }//packageSection 36//Button_overSkin (Button_overSkin) package { import flash.display.*; public dynamic class Button_overSkin extends MovieClip { } }//packageSection 37//Button_selectedDisabledSkin (Button_selectedDisabledSkin) package { import flash.display.*; public dynamic class Button_selectedDisabledSkin extends MovieClip { } }//packageSection 38//Button_selectedDownSkin (Button_selectedDownSkin) package { import flash.display.*; public dynamic class Button_selectedDownSkin extends MovieClip { } }//packageSection 39//Button_selectedOverSkin (Button_selectedOverSkin) package { import flash.display.*; public dynamic class Button_selectedOverSkin extends MovieClip { } }//packageSection 40//Button_selectedUpSkin (Button_selectedUpSkin) package { import flash.display.*; public dynamic class Button_selectedUpSkin extends MovieClip { } }//packageSection 41//Button_upSkin (Button_upSkin) package { import flash.display.*; public dynamic class Button_upSkin extends MovieClip { } }//packageSection 42//def_back (def_back) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_back extends MovieClip { public var but:manualbutton; public function def_back(){ __setAcc_but_def_back_Layer2_0(); __setTab_but_def_back_Layer2_0(); } function __setAcc_but_def_back_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Back"; but.accessibilityProperties.forceSimple = true; } function __setTab_but_def_back_Layer2_0(){ but.tabIndex = 1; } } }//packageSection 43//def_bgr (def_bgr) package { import flash.display.*; public dynamic class def_bgr extends MovieClip { } }//packageSection 44//def_forward (def_forward) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_forward extends MovieClip { public var but:manualbutton; public function def_forward(){ __setAcc_but_def_forward_Layer2_0(); __setTab_but_def_forward_Layer2_0(); } function __setTab_but_def_forward_Layer2_0(){ but.tabIndex = 2; } function __setAcc_but_def_forward_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Forward"; but.accessibilityProperties.forceSimple = true; } } }//packageSection 45//def_fullscreen (def_fullscreen) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_fullscreen extends MovieClip { public var but:manualbutton; public function def_fullscreen(){ __setAcc_but_def_fullscreen_Layer2_0(); __setTab_but_def_fullscreen_Layer2_0(); } function __setTab_but_def_fullscreen_Layer2_0(){ but.tabIndex = 1; } function __setAcc_but_def_fullscreen_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Back"; but.accessibilityProperties.forceSimple = true; } } }//packageSection 46//def_help (def_help) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_help extends MovieClip { public var but:manualbutton; public function def_help(){ __setAcc_but_def_help_Layer2_0(); __setTab_but_def_help_Layer2_0(); } function __setAcc_but_def_help_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Help"; but.accessibilityProperties.forceSimple = true; } function __setTab_but_def_help_Layer2_0(){ but.tabIndex = 16; } } }//packageSection 47//def_more (def_more) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_more extends MovieClip { public var but:manualbutton; public function def_more(){ __setAcc_but_def_more_Layer3_0(); __setTab_but_def_more_Layer3_0(); } function __setTab_but_def_more_Layer3_0(){ but.tabIndex = 0; } function __setAcc_but_def_more_Layer3_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.silent = true; } } }//packageSection 48//def_moveMode (def_moveMode) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_moveMode extends MovieClip { public var but:manualbutton; public function def_moveMode(){ __setAcc_but_def_moveMode_Layer2_0(); __setTab_but_def_moveMode_Layer2_0(); } function __setTab_but_def_moveMode_Layer2_0(){ but.tabIndex = 3; } function __setAcc_but_def_moveMode_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Drag"; but.accessibilityProperties.forceSimple = true; } } }//packageSection 49//def_newwindow (def_newwindow) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_newwindow extends MovieClip { public var but:manualbutton; public function def_newwindow(){ __setAcc_but_def_newwindow_Layer2_0(); __setTab_but_def_newwindow_Layer2_0(); } function __setAcc_but_def_newwindow_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Open in New Window"; but.accessibilityProperties.forceSimple = true; } function __setTab_but_def_newwindow_Layer2_0(){ but.tabIndex = 15; } } }//packageSection 50//def_nextpage (def_nextpage) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_nextpage extends MovieClip { public var but:manualbutton; public function def_nextpage(){ __setAcc_but_def_nextpage_Layer2_0(); __setTab_but_def_nextpage_Layer2_0(); } function __setTab_but_def_nextpage_Layer2_0(){ but.tabIndex = 10; } function __setAcc_but_def_nextpage_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Next page"; but.accessibilityProperties.forceSimple = true; } } }//packageSection 51//def_prevpage (def_prevpage) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_prevpage extends MovieClip { public var but:manualbutton; public function def_prevpage(){ __setAcc_but_def_prevpage_Layer2_0(); __setTab_but_def_prevpage_Layer2_0(); } function __setTab_but_def_prevpage_Layer2_0(){ but.tabIndex = 8; } function __setAcc_but_def_prevpage_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Previous page"; but.accessibilityProperties.forceSimple = true; } } }//packageSection 52//def_print (def_print) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_print extends MovieClip { public var but:manualbutton; public function def_print(){ __setAcc_but_def_print_Layer2_0(); __setTab_but_def_print_Layer2_0(); } function __setTab_but_def_print_Layer2_0(){ but.tabIndex = 14; } function __setAcc_but_def_print_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Print"; but.accessibilityProperties.forceSimple = true; } } }//packageSection 53//def_rotate (def_rotate) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_rotate extends MovieClip { public var but:manualbutton; public function def_rotate(){ __setAcc_but_def_rotate_Layer2_0(); __setTab_but_def_rotate_Layer2_0(); } function __setTab_but_def_rotate_Layer2_0(){ but.tabIndex = 13; } function __setAcc_but_def_rotate_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Rotate"; but.accessibilityProperties.forceSimple = true; } } }//packageSection 54//def_scalePage (def_scalePage) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_scalePage extends MovieClip { public var but:manualbutton; public function def_scalePage(){ __setAcc_but_def_scalePage_Layer2_0(); __setTab_but_def_scalePage_Layer2_0(); } function __setAcc_but_def_scalePage_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Fit page"; but.accessibilityProperties.forceSimple = true; } function __setTab_but_def_scalePage_Layer2_0(){ but.tabIndex = 7; } } }//packageSection 55//def_scaleWidth (def_scaleWidth) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_scaleWidth extends MovieClip { public var but:manualbutton; public function def_scaleWidth(){ __setAcc_but_def_scaleWidth_Layer2_0(); __setTab_but_def_scaleWidth_Layer2_0(); } function __setTab_but_def_scaleWidth_Layer2_0(){ but.tabIndex = 6; } function __setAcc_but_def_scaleWidth_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Fit width"; but.accessibilityProperties.forceSimple = true; } } }//packageSection 56//def_selMode (def_selMode) package { import flash.display.*; import flash.accessibility.*; public dynamic class def_selMode extends MovieClip { public var but:manualbutton; public function def_selMode(){ __setAcc_but_def_selMode_Layer2_0(); __setTab_but_def_selMode_Layer2_0(); } function __setTab_but_def_selMode_Layer2_0(){ but.tabIndex = 4; } function __setAcc_but_def_selMode_Layer2_0(){ but.accessibilityProperties = new AccessibilityProperties(); but.accessibilityProperties.name = "Select Text"; but.accessibilityProperties.forceSimple = true; } } }//packageSection 57//focusRectSkin (focusRectSkin) package { import flash.display.*; public dynamic class focusRectSkin extends MovieClip { } }//packageSection 58//ImgButton (ImgButton) package { import flash.display.*; public class ImgButton extends SimpleButton { private var upImageID; private var downImageID:String; public function SetImages(_arg1, _arg2:String){ var _local3:MovieClip = MovieClip(root); upState = new ImgButtonDisplayState(_arg1, _local3); downState = new ImgButtonDisplayState(_arg2, _local3); overState = new ImgButtonDisplayState(_arg2, _local3); hitTestState = new Sprite(); _local3.DrawRect(hitTestState, 0, 0, Math.max(upState.width, downState.width), Math.max(upState.height, downState.height), 0); } } }//packageSection 59//ImgButtonDisplayState (ImgButtonDisplayState) package { import flash.display.*; public class ImgButtonDisplayState extends Sprite { public function ImgButtonDisplayState(_arg1:String, _arg2:MovieClip){ _arg2.AttachMovie(_arg1, this); } } }//packageSection 60//manualbutton (manualbutton) package { import flash.display.*; import flash.events.*; public class manualbutton extends MovieClip { private var canvas:Sprite; public var normalState:uint;// = 1 public function manualbutton(){ useHandCursor = (buttonMode = true); mouseChildren = false; addEventListener(MouseEvent.ROLL_OVER, onRollOver, false, 0, true); addEventListener(MouseEvent.ROLL_OUT, onRollOut, false, 0, true); addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown, false, 0, true); addEventListener(MouseEvent.MOUSE_UP, onMouseUp, false, 0, true); } public function onMouseUp(_arg1:MouseEvent):void{ ShowState(2); } public function onRollOut(_arg1:MouseEvent):void{ var _local2:MovieClip = MovieClip(root); ShowState(normalState); } public function onRollOver(_arg1:MouseEvent):void{ ShowState(2); } public function ShowState(_arg1:uint):void{ var _local2:MovieClip = MovieClip(root); if (canvas){ removeChild(canvas); }; canvas = new Sprite(); addChild(canvas); switch (_arg1){ case 2: _local2.DrawRect(canvas, 0, 0, (width / scaleX), height, _local2.OverButColor, _local2.OverRectColor); break; case 3: _local2.DrawRect(canvas, 0, 0, (width / scaleX), height, _local2.DownButColor, _local2.DownRectColor); break; }; } public function onMouseDown(_arg1:MouseEvent):void{ ShowState(3); } } }//packageSection 61//ModalScreen (ModalScreen) package { import flash.display.*; public class ModalScreen { private static var container:DisplayObjectContainer; private static var sprite:Sprite; private static var object:DisplayObject; private static function DrawSprite(_arg1, _arg2:uint){ sprite.graphics.beginFill(0); sprite.graphics.drawRect(container.x, container.y, _arg1, _arg2); sprite.graphics.endFill(); } public static function resizeContainer(_arg1, _arg2:uint):void{ if (sprite){ sprite.graphics.clear(); DrawSprite(_arg1, _arg2); center(_arg1, _arg2, object); }; } public static function close(){ container.removeChild(sprite); sprite = null; } private static function center(_arg1:uint, _arg2:uint, _arg3:DisplayObject):void{ _arg3.x = ((_arg1 / 2) - (_arg3.width / 2)); _arg3.y = ((_arg2 / 2) - (_arg3.height / 2)); } public static function show(_arg1:DisplayObjectContainer, _arg2:DisplayObject, _arg3:uint, _arg4:uint){ _arg1 = DisplayObjectContainer(_arg1.root); ModalScreen.container = _arg1; ModalScreen.object = _arg2; sprite = new Sprite(); DrawSprite(_arg3, _arg4); sprite.addChild(_arg2); sprite.alpha = 0.5; _arg2.alpha = 2; _arg1.addChild(sprite); _arg1.setChildIndex(sprite, (_arg1.numChildren - 1)); ModalScreen.center(_arg3, _arg4, _arg2); } } }//packageSection 62//P2FLocale (P2FLocale) package { import flash.system.*; public class P2FLocale { var Strings:Object; static var DefLanguage = "en"; public static var LocaleArray:Object = {bs:{IDS_DRAG:"Ruka", IDS_SELTEXT:"Selektuj tekst", IDS_ZOOM:"Priblizi", IDS_FITWIDTH:"Po sirini", IDS_FITPAGE:"Po stranici", IDS_PREVPAGE:"Prosla stranica", IDS_GOTOPAGE:"Idi na stranicu", IDS_TOTPAGES:"Ukupno stranica", IDS_NEXTPAGE:"Sljedeca stranica", IDS_SCHHINT:"Kucaj ovdje da trazis", IDS_SEARCH:"Trazi", IDS_NOTFOUND:"Nije pronadjeno", IDS_ROTATE:"Rotiraj", IDS_PRINT:"Printaj", IDS_NEWWND:"Otvori u novom prozoru", IDS_HELP:"Pomoc", IDS_BACK:"Nazad", IDS_FORWARD:"Naprijed", IDS_FULLSCR:"Prikaz preko cijelog ekrana", IDS_FULLSCREXIT:"Prekini prikaz preko cijelog ekrana"}, cs:{IDS_DRAG:"Posouvání", IDS_SELTEXT:"Vybrat text", IDS_ZOOM:"Zvětšení", IDS_FITWIDTH:"Šířka stránky", IDS_FITPAGE:"Celá stránka", IDS_PREVPAGE:"Předchozí stránka", IDS_GOTOPAGE:"Přejít na stránku", IDS_TOTPAGES:"Celkem stránek", IDS_NEXTPAGE:"Další stránka", IDS_SCHHINT:"Vložte hledaný text", IDS_SEARCH:"Hledat", IDS_NOTFOUND:"Nenalezeno", IDS_ROTATE:"Otočit", IDS_PRINT:"Tisk", IDS_NEWWND:"Otevřít v novém okně", IDS_HELP:"Nápověda", IDS_BACK:"Zpět", IDS_FORWARD:"Vpřed", IDS_FULLSCR:"Celá obrazovka", IDS_FULLSCREXIT:"Ukončit režim celé obrazovky", IDS_PDTITLE:"Nastavení tisku", IDS_PDPAGES:"Strany:", IDS_PDFROM:"Od", IDS_PDTO:"Do", IDS_PDSCALING:"Měřítko stránky:", IDS_PDNOSCALE:"Žádné", IDS_PDAUTOR:"Automaticky otočit a přizpůsobit", IDS_OK:"OK", IDS_CANCEL:"Storno"}, da:{IDS_DRAG:"Træk", IDS_SELTEXT:"Vælg tekst", IDS_ZOOM:"Zoom", IDS_FITWIDTH:"Tilpas bredde", IDS_FITPAGE:"Tilpas side", IDS_PREVPAGE:"Forrige side", IDS_GOTOPAGE:"Gå til side", IDS_TOTPAGES:"Antal sider", IDS_NEXTPAGE:"Næste side", IDS_SCHHINT:"Angiv søgeord", IDS_SEARCH:"Søg", IDS_NOTFOUND:"Ikke fundet", IDS_ROTATE:"Rotér", IDS_PRINT:"Udskriv", IDS_NEWWND:"Åbn i nyt vindue", IDS_HELP:"Hjælp", IDS_BACK:"Tilbage", IDS_FORWARD:"Fremad", IDS_FULLSCR:"Fuldskærm", IDS_FULLSCREXIT:"Afslut fuldskærmstilstand"}, de:{IDS_DRAG:"Schwenken", IDS_SELTEXT:"Text auswählen", IDS_ZOOM:"Zoom", IDS_FITWIDTH:"Breite anpassen", IDS_FITPAGE:"An Ansicht anpassen", IDS_PREVPAGE:"Vorherige Seite", IDS_GOTOPAGE:"Springen zu Seite", IDS_TOTPAGES:"Gesamtseiten", IDS_NEXTPAGE:"Nächste Seite", IDS_SCHHINT:"Geben Sie hier ein um Text zu suchen", IDS_SEARCH:"Suche", IDS_NOTFOUND:"Nicht gefunden", IDS_ROTATE:"Drehen", IDS_PRINT:"Drucken", IDS_NEWWND:"In neuem Browser öffnen", IDS_HELP:"Hilfe", IDS_BACK:"Zurück", IDS_FORWARD:"Vor", IDS_FULLSCR:"Vollbild", IDS_FULLSCREXIT:"Vollbildmodus beenden", IDS_PDTITLE:"Druckeinstellungen", IDS_PDPAGES:"Seiten:", IDS_PDFROM:"Von", IDS_PDTO:"Bis", IDS_PDSCALING:"Seitenanpassung:", IDS_PDNOSCALE:"Keine", IDS_PDAUTOR:"Automatisch drehen und einpassen", IDS_OK:"OK", IDS_CANCEL:"Abbrechen"}, en:{IDS_DRAG:"Drag", IDS_SELTEXT:"Select Text", IDS_ZOOM:"Zoom", IDS_FITWIDTH:"Fit Width", IDS_FITPAGE:"Fit Page", IDS_PREVPAGE:"Previous Page", IDS_GOTOPAGE:"Go To Page", IDS_TOTPAGES:"Total Pages", IDS_NEXTPAGE:"Next Page", IDS_SCHHINT:"Type here to search", IDS_SEARCH:"Search", IDS_NOTFOUND:"Not Found", IDS_ROTATE:"Rotate", IDS_PRINT:"Print", IDS_NEWWND:"Open In New Window", IDS_HELP:"Help", IDS_BACK:"Back", IDS_FORWARD:"Forward", IDS_FULLSCR:"Full Screen", IDS_FULLSCREXIT:"Exit Full Screen Mode", IDS_PDTITLE:"Print Options", IDS_PDPAGES:"Pages:", IDS_PDFROM:"From", IDS_PDTO:"To", IDS_PDSCALING:"Scaling:", IDS_PDNOSCALE:"No scale", IDS_PDAUTOR:"Auto-Rotate and Fit", IDS_OK:"OK", IDS_CANCEL:"Cancel"}, es:{IDS_DRAG:"Desplazar", IDS_SELTEXT:"Seleccionar", IDS_ZOOM:"Zoom", IDS_FITWIDTH:"Ajustar al ancho", IDS_FITPAGE:"Ajustar al visor", IDS_PREVPAGE:"Página Anterior", IDS_GOTOPAGE:"Vaya A paginar", IDS_TOTPAGES:"Páginas Totales", IDS_NEXTPAGE:"Página Siguiente", IDS_SCHHINT:"Mecanografíe aquí a búsqueda", IDS_SEARCH:"Buscar", IDS_NOTFOUND:"No encontrado", IDS_ROTATE:"Rote", IDS_PRINT:"Imprimir", IDS_NEWWND:"Abrir en nuevo navegador", IDS_HELP:"Ayuda", IDS_BACK:"Anterior", IDS_FORWARD:"Siguiente", IDS_FULLSCR:"Pantalla completa", IDS_FULLSCREXIT:"Salir del modo pantalla completa", IDS_PDTITLE:"Imprimir", IDS_PDPAGES:"Páginas:", IDS_PDFROM:"De", IDS_PDTO:"A", IDS_PDSCALING:"Escala:", IDS_PDNOSCALE:"Sin escala", IDS_PDAUTOR:"Auto-rotar y Ajustar", IDS_OK:"OK", IDS_CANCEL:"Cancelar"}, fr:{IDS_DRAG:"Panorama", IDS_SELTEXT:"Sélectionner le texte", IDS_ZOOM:"Zoom", IDS_FITWIDTH:"Ajuster la largeur", IDS_FITPAGE:"Ajuster dans la visionneuse", IDS_PREVPAGE:"Page précédente", IDS_GOTOPAGE:" Aller a la page", IDS_TOTPAGES:"Nombre de pages", IDS_NEXTPAGE:"Prochaine page", IDS_SCHHINT:"Entrez votre question ici", IDS_SEARCH:"Rechercher", IDS_NOTFOUND:"Non trouvé", IDS_ROTATE:"Rotation", IDS_PRINT:"Imprimer", IDS_NEWWND:"Ouvrir dans une nouvelle fenêtre", IDS_HELP:"Aide", IDS_BACK:"Page précédente", IDS_FORWARD:"Page suivante", IDS_FULLSCR:"Plein écran", IDS_FULLSCREXIT:"Quitter le mode plein écran"}, hr:{IDS_DRAG:"Ruka", IDS_SELTEXT:"Selektiraj tekst", IDS_ZOOM:"Zumiraj", IDS_FITWIDTH:"Po sirini", IDS_FITPAGE:"Po stranici", IDS_PREVPAGE:"Prethodna stranica", IDS_GOTOPAGE:"Idi na stranicu", IDS_TOTPAGES:"Svega stranica", IDS_NEXTPAGE:"Sljedeca stranica", IDS_SCHHINT:"Upisi ovdje za pretragu", IDS_SEARCH:"Pretraga", IDS_NOTFOUND:"Nema rezultata", IDS_ROTATE:"Zarotiraj", IDS_PRINT:"Stampaj", IDS_NEWWND:"Otvori u novom prozoru", IDS_HELP:"Pomoc", IDS_BACK:"Nazad", IDS_FORWARD:"Naprijed", IDS_FULLSCR:"Potpuni ekran", IDS_FULLSCREXIT:"Izađi iz prikaza potpunog ekrana"}, it:{IDS_DRAG:"Trascina", IDS_SELTEXT:"Seleziona testo", IDS_ZOOM:"Zoom", IDS_FITWIDTH:"Adatta larghezza", IDS_FITPAGE:"Adatta pagina", IDS_PREVPAGE:"Pagina precedente", IDS_GOTOPAGE:"Vai a pagina", IDS_TOTPAGES:"Pagine totali", IDS_NEXTPAGE:"Pagina successiva", IDS_SCHHINT:"Testo da cercare", IDS_SEARCH:"Trova", IDS_NOTFOUND:"Testo non trovato", IDS_ROTATE:"Ruota", IDS_PRINT:"Stampa", IDS_NEWWND:"Apri in una nuova finestra", IDS_HELP:"Aiuto", IDS_BACK:"Indietro", IDS_FORWARD:"Avanti", IDS_FULLSCR:"Schermo intero", IDS_FULLSCREXIT:"Esci da schermo intero"}, ja:{IDS_DRAG:"ドラッグ", IDS_SELTEXT:"テキスト選択", IDS_ZOOM:"ズーム", IDS_FITWIDTH:"幅に合わせる", IDS_FITPAGE:"ページに合わせる", IDS_PREVPAGE:"前頁", IDS_GOTOPAGE:"ページへ", IDS_TOTPAGES:"総ページ数", IDS_NEXTPAGE:"次頁", IDS_SCHHINT:"検索する文字列を入力してください", IDS_SEARCH:"検索", IDS_NOTFOUND:"指定のものは見つかりません", IDS_ROTATE:"回転", IDS_PRINT:"印刷", IDS_NEWWND:"新しいウィンドウで開く", IDS_HELP:"ヘルプ", IDS_BACK:"前へ", IDS_FORWARD:"次へ", IDS_FULLSCR:"全画面表示", IDS_FULLSCREXIT:"全画面表示モードを閉じる", IDS_PDTITLE:"印刷オプション", IDS_PDPAGES:"ページ指定", IDS_PDFROM:"開始", IDS_PDTO:"終了", IDS_PDSCALING:"スケーリング", IDS_PDNOSCALE:"スケール無し", IDS_PDAUTOR:"自動回転とページに合わせる", IDS_OK:"印刷", IDS_CANCEL:"キャンセル"}, nl:{IDS_DRAG:"Slepen", IDS_SELTEXT:"Selecteer tekst", IDS_ZOOM:"Vergroten", IDS_FITWIDTH:"Aanpassen breedte", IDS_FITPAGE:"Aanpassen pagina", IDS_PREVPAGE:"Vorige pagina", IDS_GOTOPAGE:"Ga naar", IDS_TOTPAGES:"Totaal aantal pagina's", IDS_NEXTPAGE:"Volgende pagina", IDS_SCHHINT:"Zoekargument", IDS_SEARCH:"Zoeken", IDS_NOTFOUND:"Niet gevonden", IDS_ROTATE:"Roteren", IDS_PRINT:"Afdrukken", IDS_NEWWND:"Open in nieuw window", IDS_HELP:"Help", IDS_BACK:"Terug", IDS_FORWARD:"Vooruit", IDS_FULLSCR:"Volledig scherm", IDS_FULLSCREXIT:"Volledigschermmodus verlaten", IDS_PDTITLE:"Print Opties", IDS_PDPAGES:"Pagina’s:", IDS_PDFROM:"Van", IDS_PDTO:"Tot", IDS_PDSCALING:"Schalen:", IDS_PDNOSCALE:"Niet schalen", IDS_PDAUTOR:"Passend maken", IDS_OK:"OK", IDS_CANCEL:"Annuleer"}, pl:{IDS_DRAG:"Przeciągnij", IDS_SELTEXT:"Zaznacz tekst", IDS_ZOOM:"Zmień rozmiar", IDS_FITWIDTH:"Dopasuj szerokość", IDS_FITPAGE:"Dopasuj stronę", IDS_PREVPAGE:"Poprzednia strona", IDS_GOTOPAGE:"Przejdź do strony", IDS_TOTPAGES:"Suma stron", IDS_NEXTPAGE:"Następna strona", IDS_SCHHINT:"Wpisz tekst", IDS_SEARCH:"Szukaj", IDS_NOTFOUND:"Nie znalezionio", IDS_ROTATE:"Obróć", IDS_PRINT:"Drukuj", IDS_NEWWND:"Otwórz w nowym oknie", IDS_HELP:"Pomoc", IDS_BACK:"Do tyłu", IDS_FORWARD:"Do przodu", IDS_FULLSCR:"Tryb pełnoekranowy", IDS_FULLSCREXIT:"Opuść tryb pełnoekranowy", IDS_PDTITLE:"Opcje wydruku", IDS_PDPAGES:"Strony:", IDS_PDFROM:"Od", IDS_PDTO:"Do", IDS_PDSCALING:"Skalowanie:", IDS_PDNOSCALE:"Nie skaluj", IDS_PDAUTOR:"Autorotacja i dopasowanie", IDS_OK:"OK", IDS_CANCEL:"Anuluj"}, pt:{IDS_DRAG:"Arrastar", IDS_SELTEXT:"Selecionar Texto", IDS_ZOOM:"Zoom", IDS_FITWIDTH:"Ajustar Largura", IDS_FITPAGE:"Ajustar Página", IDS_PREVPAGE:"Página Anterior", IDS_GOTOPAGE:"Ir para Página", IDS_TOTPAGES:"Total de Páginas", IDS_NEXTPAGE:"Próxima Página", IDS_SCHHINT:"Digite aqui para Procurar", IDS_SEARCH:"Procurar", IDS_NOTFOUND:"Não Encontrado", IDS_ROTATE:"Girar", IDS_PRINT:"Imprimir", IDS_NEWWND:"Abrir em uma Nova Janela", IDS_HELP:"Ajuda", IDS_BACK:"Retroceder", IDS_FORWARD:"Avançar", IDS_FULLSCR:"Ecrã inteiro", IDS_FULLSCREXIT:"Sair de Modo de Ecrã Inteiro", IDS_PDTITLE:"Opções de Impressão", IDS_PDPAGES:"Páginas:", IDS_PDFROM:"De", IDS_PDTO:"Para", IDS_PDSCALING:"Escala:", IDS_PDNOSCALE:"Sem escala", IDS_PDAUTOR:"Rotação Automática e Ajuste", IDS_OK:"OK", IDS_CANCEL:"Cancelar"}, ru:{IDS_DRAG:"Перемещение", IDS_SELTEXT:"Выбор текста", IDS_ZOOM:"Масштаб", IDS_FITWIDTH:"По ширине страницы", IDS_FITPAGE:"Страница целиком", IDS_PREVPAGE:"Предыдущая страница", IDS_GOTOPAGE:"Перейти к странице", IDS_TOTPAGES:"Всего страниц", IDS_NEXTPAGE:"Следующая страница", IDS_SCHHINT:"Введите здесь текст для поиска", IDS_SEARCH:"Поиск", IDS_NOTFOUND:"Не найдено", IDS_ROTATE:"Поворот", IDS_PRINT:"Печать", IDS_NEWWND:"Открыть в новом окне", IDS_HELP:"Помощь", IDS_BACK:"Назад", IDS_FORWARD:"Вперёд", IDS_FULLSCR:"Полный экран", IDS_FULLSCREXIT:"Выйти из полноэкранного режима", IDS_PDTITLE:"Параметры печати", IDS_PDPAGES:"Страницы:", IDS_PDFROM:"С", IDS_PDTO:"По", IDS_PDSCALING:"Масштабирование:", IDS_PDNOSCALE:"Без масштабирования", IDS_PDAUTOR:"Повернуть и подогнать", IDS_OK:"OK", IDS_CANCEL:"Отмена"}, sr:{IDS_DRAG:"Ruka", IDS_SELTEXT:"Selektuj tekst", IDS_ZOOM:"Ublizi", IDS_FITWIDTH:"Po sirini", IDS_FITPAGE:"Po stranici", IDS_PREVPAGE:"Prethodna stranica", IDS_GOTOPAGE:"Idi na stranicu", IDS_TOTPAGES:"Svega stranica", IDS_NEXTPAGE:"Sledeca stranica", IDS_SCHHINT:"Upisi ovde za pretragu", IDS_SEARCH:"Pretraga", IDS_NOTFOUND:"Nema", IDS_ROTATE:"Zarotiraj", IDS_PRINT:"Stampa", IDS_NEWWND:"Otvori u novom prozoru", IDS_HELP:"Pomoc", IDS_BACK:"Nazad", IDS_FORWARD:"Napred", IDS_FULLSCR:"Full Screen", IDS_FULLSCREXIT:"Exit Full Screen Mode"}, sv:{IDS_DRAG:"Dra", IDS_SELTEXT:"Välj text", IDS_ZOOM:"Zooma", IDS_FITWIDTH:"Anpassa bredd", IDS_FITPAGE:"Anpassa sida", IDS_PREVPAGE:"Föregående sida", IDS_GOTOPAGE:"Gå till sidan", IDS_TOTPAGES:"Alla sidor", IDS_NEXTPAGE:"Nästa sida", IDS_SCHHINT:"Skriv in sökord här", IDS_SEARCH:"Sök", IDS_NOTFOUND:"Kan inte hittas", IDS_ROTATE:"Rotera", IDS_PRINT:"Skriv ut", IDS_NEWWND:"Öppna i nytt fönster", IDS_HELP:"Hjälp", IDS_BACK:"Tillbaka", IDS_FORWARD:"Framåt", IDS_FULLSCR:"Helskärm", IDS_FULLSCREXIT:"Avsluta helskärmsläget", IDS_PDTITLE:"Skriv ut", IDS_PDPAGES:"Sidor:", IDS_PDFROM:"Från", IDS_PDTO:"Till", IDS_PDSCALING:"Anpassningsalternativ", IDS_PDNOSCALE:"Ingen anpassning", IDS_PDAUTOR:"Auto-rotering och anpassning", IDS_OK:"OK", IDS_CANCEL:"Avbryt"}, tr:{IDS_DRAG:"Sürükle", IDS_SELTEXT:"Seç", IDS_ZOOM:"Yaklaştır", IDS_FITWIDTH:"Enine Sığdır", IDS_FITPAGE:"Sayfayı Sığdır", IDS_PREVPAGE:"Önceki Sayfa", IDS_GOTOPAGE:"Sayfaya Git", IDS_TOTPAGES:"Toplam Sayfa", IDS_NEXTPAGE:"Sonraki Sayfa", IDS_SCHHINT:"Aramak istediğiniz kelimeyi giriniz", IDS_SEARCH:"Ara", IDS_NOTFOUND:"Bulunamadı", IDS_ROTATE:"Döndür", IDS_PRINT:"Bas", IDS_NEWWND:"Yeni Pencerede Aç", IDS_HELP:"Yardım", IDS_BACK:"Geri", IDS_FORWARD:"İleri", IDS_FULLSCR:"Tam Ekran", IDS_FULLSCREXIT:"Tam Ekrandan çık", IDS_PDTITLE:"Baskı Seçenekleri", IDS_PDPAGES:"Sayfalar:", IDS_PDFROM:"", IDS_PDTO:"-", IDS_PDSCALING:"Boyutlandırma:", IDS_PDNOSCALE:"Yok", IDS_PDAUTOR:"Otomatik çevir ve sığdır", IDS_OK:"Tamam", IDS_CANCEL:"Vazgeç"}}; public function P2FLocale(){ var _local1:* = {IDS_DRAG:"拖曳页面", IDS_SELTEXT:"选择文本", IDS_ZOOM:"缩放", IDS_FITWIDTH:"适合宽度", IDS_FITPAGE:"适合页面", IDS_PREVPAGE:"前一页", IDS_GOTOPAGE:"前往页", IDS_TOTPAGES:"总页数", IDS_NEXTPAGE:"下一页", IDS_SCHHINT:"此处输入查询内容", IDS_SEARCH:"查询", IDS_NOTFOUND:"没有找到", IDS_ROTATE:"旋转", IDS_PRINT:"打印", IDS_NEWWND:"在新窗口打开", IDS_HELP:"帮助", IDS_BACK:"返回", IDS_FORWARD:"向前", IDS_FULLSCR:"全屏", IDS_FULLSCREXIT:"退出全屏模式", IDS_PDTITLE:"打印设置", IDS_PDPAGES:"页面:", IDS_PDFROM:"从", IDS_PDTO:"到", IDS_PDSCALING:"缩放:", IDS_PDNOSCALE:"不缩放", IDS_PDAUTOR:"自动旋转并适合页面缩放", IDS_OK:"确定", IDS_CANCEL:"取消"}; var _local2:* = {IDS_DRAG:"拖曳頁面", IDS_SELTEXT:"選擇文字", IDS_ZOOM:"縮放", IDS_FITWIDTH:"頁面符合視窗寬度", IDS_FITPAGE:"符合完整頁面", IDS_PREVPAGE:"前一頁", IDS_GOTOPAGE:"前往頁", IDS_TOTPAGES:"總頁數", IDS_NEXTPAGE:"下一頁", IDS_SCHHINT:"輸入查詢內容", IDS_SEARCH:"查詢", IDS_NOTFOUND:"沒有找到", IDS_ROTATE:"旋轉", IDS_PRINT:"列印", IDS_NEWWND:"開啟於新視窗", IDS_HELP:"幫助", IDS_BACK:"往後", IDS_FORWARD:"往前", IDS_FULLSCR:"全螢幕", IDS_FULLSCREXIT:"離開全螢幕", IDS_PDTITLE:"列印選項", IDS_PDPAGES:"頁面:", IDS_PDFROM:"從", IDS_PDTO:"到", IDS_PDSCALING:"縮放:", IDS_PDNOSCALE:"不縮放", IDS_PDAUTOR:"自動旋轉符合頁面大小", IDS_OK:"確定", IDS_CANCEL:"取消"}; LocaleArray["zh-CN"] = _local1; LocaleArray["zh-TW"] = _local2; } public function setLanguage(_arg1:String){ if (_arg1 == "auto"){ _arg1 = Capabilities.language; }; Strings = LocaleArray[_arg1]; if (Strings == null){ Strings = LocaleArray[DefLanguage]; }; } public function loadString(_arg1:String):String{ var _local2:String = Strings[_arg1]; if (_local2 == null){ _local2 = LocaleArray[DefLanguage][_arg1]; }; return (_local2); } } }//packageSection 63//Page1 (Page1) package { import flash.display.*; import flash.text.*; public class Page1 extends MovieClip { public var CR:TextField; } }//packageSection 64//Page10 (Page10) package { import flash.display.*; import flash.text.*; public class Page10 extends MovieClip { public var CR:TextField; } }//packageSection 65//Page100 (Page100) package { import flash.display.*; import flash.text.*; public class Page100 extends MovieClip { public var CR:TextField; } }//packageSection 66//Page101 (Page101) package { import flash.display.*; import flash.text.*; public class Page101 extends MovieClip { public var CR:TextField; } }//packageSection 67//Page102 (Page102) package { import flash.display.*; import flash.text.*; public class Page102 extends MovieClip { public var CR:TextField; } }//packageSection 68//Page103 (Page103) package { import flash.display.*; import flash.text.*; public class Page103 extends MovieClip { public var CR:TextField; } }//packageSection 69//Page104 (Page104) package { import flash.display.*; import flash.text.*; public class Page104 extends MovieClip { public var CR:TextField; } }//packageSection 70//Page105 (Page105) package { import flash.display.*; import flash.text.*; public class Page105 extends MovieClip { public var CR:TextField; } }//packageSection 71//Page106 (Page106) package { import flash.display.*; import flash.text.*; public class Page106 extends MovieClip { public var CR:TextField; } }//packageSection 72//Page107 (Page107) package { import flash.display.*; import flash.text.*; public class Page107 extends MovieClip { public var CR:TextField; } }//packageSection 73//Page108 (Page108) package { import flash.display.*; import flash.text.*; public class Page108 extends MovieClip { public var CR:TextField; } }//packageSection 74//Page109 (Page109) package { import flash.display.*; import flash.text.*; public class Page109 extends MovieClip { public var CR:TextField; } }//packageSection 75//Page11 (Page11) package { import flash.display.*; import flash.text.*; public class Page11 extends MovieClip { public var CR:TextField; } }//packageSection 76//Page110 (Page110) package { import flash.display.*; import flash.text.*; public class Page110 extends MovieClip { public var CR:TextField; } }//packageSection 77//Page111 (Page111) package { import flash.display.*; import flash.text.*; public class Page111 extends MovieClip { public var CR:TextField; } }//packageSection 78//Page112 (Page112) package { import flash.display.*; import flash.text.*; public class Page112 extends MovieClip { public var CR:TextField; } }//packageSection 79//Page113 (Page113) package { import flash.display.*; import flash.text.*; public class Page113 extends MovieClip { public var CR:TextField; } }//packageSection 80//Page114 (Page114) package { import flash.display.*; import flash.text.*; public class Page114 extends MovieClip { public var CR:TextField; } }//packageSection 81//Page115 (Page115) package { import flash.display.*; import flash.text.*; public class Page115 extends MovieClip { public var CR:TextField; } }//packageSection 82//Page116 (Page116) package { import flash.display.*; import flash.text.*; public class Page116 extends MovieClip { public var CR:TextField; } }//packageSection 83//Page117 (Page117) package { import flash.display.*; import flash.text.*; public class Page117 extends MovieClip { public var CR:TextField; } }//packageSection 84//Page118 (Page118) package { import flash.display.*; import flash.text.*; public class Page118 extends MovieClip { public var CR:TextField; } }//packageSection 85//Page119 (Page119) package { import flash.display.*; import flash.text.*; public class Page119 extends MovieClip { public var CR:TextField; } }//packageSection 86//Page12 (Page12) package { import flash.display.*; import flash.text.*; public class Page12 extends MovieClip { public var CR:TextField; } }//packageSection 87//Page120 (Page120) package { import flash.display.*; import flash.text.*; public class Page120 extends MovieClip { public var CR:TextField; } }//packageSection 88//Page121 (Page121) package { import flash.display.*; import flash.text.*; public class Page121 extends MovieClip { public var CR:TextField; } }//packageSection 89//Page122 (Page122) package { import flash.display.*; import flash.text.*; public class Page122 extends MovieClip { public var CR:TextField; } }//packageSection 90//Page123 (Page123) package { import flash.display.*; import flash.text.*; public class Page123 extends MovieClip { public var CR:TextField; } }//packageSection 91//Page124 (Page124) package { import flash.display.*; import flash.text.*; public class Page124 extends MovieClip { public var CR:TextField; } }//packageSection 92//Page125 (Page125) package { import flash.display.*; import flash.text.*; public class Page125 extends MovieClip { public var CR:TextField; } }//packageSection 93//Page126 (Page126) package { import flash.display.*; import flash.text.*; public class Page126 extends MovieClip { public var CR:TextField; } }//packageSection 94//Page127 (Page127) package { import flash.display.*; import flash.text.*; public class Page127 extends MovieClip { public var CR:TextField; } }//packageSection 95//Page128 (Page128) package { import flash.display.*; import flash.text.*; public class Page128 extends MovieClip { public var CR:TextField; } }//packageSection 96//Page129 (Page129) package { import flash.display.*; import flash.text.*; public class Page129 extends MovieClip { public var CR:TextField; } }//packageSection 97//Page13 (Page13) package { import flash.display.*; import flash.text.*; public class Page13 extends MovieClip { public var CR:TextField; } }//packageSection 98//Page130 (Page130) package { import flash.display.*; import flash.text.*; public class Page130 extends MovieClip { public var CR:TextField; } }//packageSection 99//Page131 (Page131) package { import flash.display.*; import flash.text.*; public class Page131 extends MovieClip { public var CR:TextField; } }//packageSection 100//Page132 (Page132) package { import flash.display.*; import flash.text.*; public class Page132 extends MovieClip { public var CR:TextField; } }//packageSection 101//Page133 (Page133) package { import flash.display.*; import flash.text.*; public class Page133 extends MovieClip { public var CR:TextField; } }//packageSection 102//Page134 (Page134) package { import flash.display.*; import flash.text.*; public class Page134 extends MovieClip { public var CR:TextField; } }//packageSection 103//Page135 (Page135) package { import flash.display.*; import flash.text.*; public class Page135 extends MovieClip { public var CR:TextField; } }//packageSection 104//Page136 (Page136) package { import flash.display.*; import flash.text.*; public class Page136 extends MovieClip { public var CR:TextField; } }//packageSection 105//Page137 (Page137) package { import flash.display.*; import flash.text.*; public class Page137 extends MovieClip { public var CR:TextField; } }//packageSection 106//Page138 (Page138) package { import flash.display.*; import flash.text.*; public class Page138 extends MovieClip { public var CR:TextField; } }//packageSection 107//Page139 (Page139) package { import flash.display.*; import flash.text.*; public class Page139 extends MovieClip { public var CR:TextField; } }//packageSection 108//Page14 (Page14) package { import flash.display.*; import flash.text.*; public class Page14 extends MovieClip { public var CR:TextField; } }//packageSection 109//Page140 (Page140) package { import flash.display.*; import flash.text.*; public class Page140 extends MovieClip { public var CR:TextField; } }//packageSection 110//Page141 (Page141) package { import flash.display.*; import flash.text.*; public class Page141 extends MovieClip { public var CR:TextField; } }//packageSection 111//Page142 (Page142) package { import flash.display.*; import flash.text.*; public class Page142 extends MovieClip { public var CR:TextField; } }//packageSection 112//Page143 (Page143) package { import flash.display.*; import flash.text.*; public class Page143 extends MovieClip { public var CR:TextField; } }//packageSection 113//Page144 (Page144) package { import flash.display.*; import flash.text.*; public class Page144 extends MovieClip { public var CR:TextField; } }//packageSection 114//Page145 (Page145) package { import flash.display.*; import flash.text.*; public class Page145 extends MovieClip { public var CR:TextField; } }//packageSection 115//Page146 (Page146) package { import flash.display.*; import flash.text.*; public class Page146 extends MovieClip { public var CR:TextField; } }//packageSection 116//Page147 (Page147) package { import flash.display.*; import flash.text.*; public class Page147 extends MovieClip { public var CR:TextField; } }//packageSection 117//Page148 (Page148) package { import flash.display.*; import flash.text.*; public class Page148 extends MovieClip { public var CR:TextField; } }//packageSection 118//Page149 (Page149) package { import flash.display.*; import flash.text.*; public class Page149 extends MovieClip { public var CR:TextField; } }//packageSection 119//Page15 (Page15) package { import flash.display.*; import flash.text.*; public class Page15 extends MovieClip { public var CR:TextField; } }//packageSection 120//Page150 (Page150) package { import flash.display.*; import flash.text.*; public class Page150 extends MovieClip { public var CR:TextField; } }//packageSection 121//Page151 (Page151) package { import flash.display.*; import flash.text.*; public class Page151 extends MovieClip { public var CR:TextField; } }//packageSection 122//Page152 (Page152) package { import flash.display.*; import flash.text.*; public class Page152 extends MovieClip { public var CR:TextField; } }//packageSection 123//Page153 (Page153) package { import flash.display.*; import flash.text.*; public class Page153 extends MovieClip { public var CR:TextField; } }//packageSection 124//Page154 (Page154) package { import flash.display.*; import flash.text.*; public class Page154 extends MovieClip { public var CR:TextField; } }//packageSection 125//Page155 (Page155) package { import flash.display.*; import flash.text.*; public class Page155 extends MovieClip { public var CR:TextField; } }//packageSection 126//Page156 (Page156) package { import flash.display.*; import flash.text.*; public class Page156 extends MovieClip { public var CR:TextField; } }//packageSection 127//Page157 (Page157) package { import flash.display.*; import flash.text.*; public class Page157 extends MovieClip { public var CR:TextField; } }//packageSection 128//Page158 (Page158) package { import flash.display.*; import flash.text.*; public class Page158 extends MovieClip { public var CR:TextField; } }//packageSection 129//Page159 (Page159) package { import flash.display.*; import flash.text.*; public class Page159 extends MovieClip { public var CR:TextField; } }//packageSection 130//Page16 (Page16) package { import flash.display.*; import flash.text.*; public class Page16 extends MovieClip { public var CR:TextField; } }//packageSection 131//Page160 (Page160) package { import flash.display.*; import flash.text.*; public class Page160 extends MovieClip { public var CR:TextField; } }//packageSection 132//Page161 (Page161) package { import flash.display.*; import flash.text.*; public class Page161 extends MovieClip { public var CR:TextField; } }//packageSection 133//Page162 (Page162) package { import flash.display.*; import flash.text.*; public class Page162 extends MovieClip { public var CR:TextField; } }//packageSection 134//Page163 (Page163) package { import flash.display.*; import flash.text.*; public class Page163 extends MovieClip { public var CR:TextField; } }//packageSection 135//Page164 (Page164) package { import flash.display.*; import flash.text.*; public class Page164 extends MovieClip { public var CR:TextField; } }//packageSection 136//Page165 (Page165) package { import flash.display.*; import flash.text.*; public class Page165 extends MovieClip { public var CR:TextField; } }//packageSection 137//Page166 (Page166) package { import flash.display.*; import flash.text.*; public class Page166 extends MovieClip { public var CR:TextField; } }//packageSection 138//Page167 (Page167) package { import flash.display.*; import flash.text.*; public class Page167 extends MovieClip { public var CR:TextField; } }//packageSection 139//Page168 (Page168) package { import flash.display.*; import flash.text.*; public class Page168 extends MovieClip { public var CR:TextField; } }//packageSection 140//Page169 (Page169) package { import flash.display.*; import flash.text.*; public class Page169 extends MovieClip { public var CR:TextField; } }//packageSection 141//Page17 (Page17) package { import flash.display.*; import flash.text.*; public class Page17 extends MovieClip { public var CR:TextField; } }//packageSection 142//Page170 (Page170) package { import flash.display.*; import flash.text.*; public class Page170 extends MovieClip { public var CR:TextField; } }//packageSection 143//Page171 (Page171) package { import flash.display.*; import flash.text.*; public class Page171 extends MovieClip { public var CR:TextField; } }//packageSection 144//Page172 (Page172) package { import flash.display.*; import flash.text.*; public class Page172 extends MovieClip { public var CR:TextField; } }//packageSection 145//Page173 (Page173) package { import flash.display.*; import flash.text.*; public class Page173 extends MovieClip { public var CR:TextField; } }//packageSection 146//Page174 (Page174) package { import flash.display.*; import flash.text.*; public class Page174 extends MovieClip { public var CR:TextField; } }//packageSection 147//Page175 (Page175) package { import flash.display.*; import flash.text.*; public class Page175 extends MovieClip { public var CR:TextField; } }//packageSection 148//Page176 (Page176) package { import flash.display.*; import flash.text.*; public class Page176 extends MovieClip { public var CR:TextField; } }//packageSection 149//Page177 (Page177) package { import flash.display.*; import flash.text.*; public class Page177 extends MovieClip { public var CR:TextField; } }//packageSection 150//Page178 (Page178) package { import flash.display.*; import flash.text.*; public class Page178 extends MovieClip { public var CR:TextField; } }//packageSection 151//Page179 (Page179) package { import flash.display.*; import flash.text.*; public class Page179 extends MovieClip { public var CR:TextField; } }//packageSection 152//Page18 (Page18) package { import flash.display.*; import flash.text.*; public class Page18 extends MovieClip { public var CR:TextField; } }//packageSection 153//Page180 (Page180) package { import flash.display.*; import flash.text.*; public class Page180 extends MovieClip { public var CR:TextField; } }//packageSection 154//Page181 (Page181) package { import flash.display.*; import flash.text.*; public class Page181 extends MovieClip { public var CR:TextField; } }//packageSection 155//Page182 (Page182) package { import flash.display.*; import flash.text.*; public class Page182 extends MovieClip { public var CR:TextField; } }//packageSection 156//Page183 (Page183) package { import flash.display.*; import flash.text.*; public class Page183 extends MovieClip { public var CR:TextField; } }//packageSection 157//Page184 (Page184) package { import flash.display.*; import flash.text.*; public class Page184 extends MovieClip { public var CR:TextField; } }//packageSection 158//Page185 (Page185) package { import flash.display.*; import flash.text.*; public class Page185 extends MovieClip { public var CR:TextField; } }//packageSection 159//Page186 (Page186) package { import flash.display.*; import flash.text.*; public class Page186 extends MovieClip { public var CR:TextField; } }//packageSection 160//Page187 (Page187) package { import flash.display.*; import flash.text.*; public class Page187 extends MovieClip { public var CR:TextField; } }//packageSection 161//Page188 (Page188) package { import flash.display.*; import flash.text.*; public class Page188 extends MovieClip { public var CR:TextField; } }//packageSection 162//Page189 (Page189) package { import flash.display.*; import flash.text.*; public class Page189 extends MovieClip { public var CR:TextField; } }//packageSection 163//Page19 (Page19) package { import flash.display.*; import flash.text.*; public class Page19 extends MovieClip { public var CR:TextField; } }//packageSection 164//Page190 (Page190) package { import flash.display.*; import flash.text.*; public class Page190 extends MovieClip { public var CR:TextField; } }//packageSection 165//Page191 (Page191) package { import flash.display.*; import flash.text.*; public class Page191 extends MovieClip { public var CR:TextField; } }//packageSection 166//Page192 (Page192) package { import flash.display.*; import flash.text.*; public class Page192 extends MovieClip { public var CR:TextField; } }//packageSection 167//Page193 (Page193) package { import flash.display.*; import flash.text.*; public class Page193 extends MovieClip { public var CR:TextField; } }//packageSection 168//Page194 (Page194) package { import flash.display.*; import flash.text.*; public class Page194 extends MovieClip { public var CR:TextField; } }//packageSection 169//Page195 (Page195) package { import flash.display.*; import flash.text.*; public class Page195 extends MovieClip { public var CR:TextField; } }//packageSection 170//Page196 (Page196) package { import flash.display.*; import flash.text.*; public class Page196 extends MovieClip { public var CR:TextField; } }//packageSection 171//Page197 (Page197) package { import flash.display.*; import flash.text.*; public class Page197 extends MovieClip { public var CR:TextField; } }//packageSection 172//Page198 (Page198) package { import flash.display.*; import flash.text.*; public class Page198 extends MovieClip { public var CR:TextField; } }//packageSection 173//Page199 (Page199) package { import flash.display.*; import flash.text.*; public class Page199 extends MovieClip { public var CR:TextField; } }//packageSection 174//Page2 (Page2) package { import flash.display.*; import flash.text.*; public class Page2 extends MovieClip { public var CR:TextField; } }//packageSection 175//Page20 (Page20) package { import flash.display.*; import flash.text.*; public class Page20 extends MovieClip { public var CR:TextField; } }//packageSection 176//Page200 (Page200) package { import flash.display.*; import flash.text.*; public class Page200 extends MovieClip { public var CR:TextField; } }//packageSection 177//Page201 (Page201) package { import flash.display.*; import flash.text.*; public class Page201 extends MovieClip { public var CR:TextField; } }//packageSection 178//Page202 (Page202) package { import flash.display.*; import flash.text.*; public class Page202 extends MovieClip { public var CR:TextField; } }//packageSection 179//Page203 (Page203) package { import flash.display.*; import flash.text.*; public class Page203 extends MovieClip { public var CR:TextField; } }//packageSection 180//Page204 (Page204) package { import flash.display.*; import flash.text.*; public class Page204 extends MovieClip { public var CR:TextField; } }//packageSection 181//Page205 (Page205) package { import flash.display.*; import flash.text.*; public class Page205 extends MovieClip { public var CR:TextField; } }//packageSection 182//Page206 (Page206) package { import flash.display.*; import flash.text.*; public class Page206 extends MovieClip { public var CR:TextField; } }//packageSection 183//Page207 (Page207) package { import flash.display.*; import flash.text.*; public class Page207 extends MovieClip { public var CR:TextField; } }//packageSection 184//Page208 (Page208) package { import flash.display.*; import flash.text.*; public class Page208 extends MovieClip { public var CR:TextField; } }//packageSection 185//Page209 (Page209) package { import flash.display.*; import flash.text.*; public class Page209 extends MovieClip { public var CR:TextField; } }//packageSection 186//Page21 (Page21) package { import flash.display.*; import flash.text.*; public class Page21 extends MovieClip { public var CR:TextField; } }//packageSection 187//Page210 (Page210) package { import flash.display.*; import flash.text.*; public class Page210 extends MovieClip { public var CR:TextField; } }//packageSection 188//Page211 (Page211) package { import flash.display.*; import flash.text.*; public class Page211 extends MovieClip { public var CR:TextField; } }//packageSection 189//Page212 (Page212) package { import flash.display.*; import flash.text.*; public class Page212 extends MovieClip { public var CR:TextField; } }//packageSection 190//Page213 (Page213) package { import flash.display.*; import flash.text.*; public class Page213 extends MovieClip { public var CR:TextField; } }//packageSection 191//Page214 (Page214) package { import flash.display.*; import flash.text.*; public class Page214 extends MovieClip { public var CR:TextField; } }//packageSection 192//Page215 (Page215) package { import flash.display.*; import flash.text.*; public class Page215 extends MovieClip { public var CR:TextField; } }//packageSection 193//Page216 (Page216) package { import flash.display.*; import flash.text.*; public class Page216 extends MovieClip { public var CR:TextField; } }//packageSection 194//Page217 (Page217) package { import flash.display.*; import flash.text.*; public class Page217 extends MovieClip { public var CR:TextField; } }//packageSection 195//Page218 (Page218) package { import flash.display.*; import flash.text.*; public class Page218 extends MovieClip { public var CR:TextField; } }//packageSection 196//Page219 (Page219) package { import flash.display.*; import flash.text.*; public class Page219 extends MovieClip { public var CR:TextField; } }//packageSection 197//Page22 (Page22) package { import flash.display.*; import flash.text.*; public class Page22 extends MovieClip { public var CR:TextField; } }//packageSection 198//Page220 (Page220) package { import flash.display.*; import flash.text.*; public class Page220 extends MovieClip { public var CR:TextField; } }//packageSection 199//Page221 (Page221) package { import flash.display.*; import flash.text.*; public class Page221 extends MovieClip { public var CR:TextField; } }//packageSection 200//Page222 (Page222) package { import flash.display.*; import flash.text.*; public class Page222 extends MovieClip { public var CR:TextField; } }//packageSection 201//Page223 (Page223) package { import flash.display.*; import flash.text.*; public class Page223 extends MovieClip { public var CR:TextField; } }//packageSection 202//Page224 (Page224) package { import flash.display.*; import flash.text.*; public class Page224 extends MovieClip { public var CR:TextField; } }//packageSection 203//Page225 (Page225) package { import flash.display.*; import flash.text.*; public class Page225 extends MovieClip { public var CR:TextField; } }//packageSection 204//Page226 (Page226) package { import flash.display.*; import flash.text.*; public class Page226 extends MovieClip { public var CR:TextField; } }//packageSection 205//Page227 (Page227) package { import flash.display.*; import flash.text.*; public class Page227 extends MovieClip { public var CR:TextField; } }//packageSection 206//Page228 (Page228) package { import flash.display.*; import flash.text.*; public class Page228 extends MovieClip { public var CR:TextField; } }//packageSection 207//Page229 (Page229) package { import flash.display.*; import flash.text.*; public class Page229 extends MovieClip { public var CR:TextField; } }//packageSection 208//Page23 (Page23) package { import flash.display.*; import flash.text.*; public class Page23 extends MovieClip { public var CR:TextField; } }//packageSection 209//Page230 (Page230) package { import flash.display.*; import flash.text.*; public class Page230 extends MovieClip { public var CR:TextField; } }//packageSection 210//Page231 (Page231) package { import flash.display.*; import flash.text.*; public class Page231 extends MovieClip { public var CR:TextField; } }//packageSection 211//Page232 (Page232) package { import flash.display.*; import flash.text.*; public class Page232 extends MovieClip { public var CR:TextField; } }//packageSection 212//Page233 (Page233) package { import flash.display.*; import flash.text.*; public class Page233 extends MovieClip { public var CR:TextField; } }//packageSection 213//Page234 (Page234) package { import flash.display.*; import flash.text.*; public class Page234 extends MovieClip { public var CR:TextField; } }//packageSection 214//Page235 (Page235) package { import flash.display.*; import flash.text.*; public class Page235 extends MovieClip { public var CR:TextField; } }//packageSection 215//Page236 (Page236) package { import flash.display.*; import flash.text.*; public class Page236 extends MovieClip { public var CR:TextField; } }//packageSection 216//Page237 (Page237) package { import flash.display.*; import flash.text.*; public class Page237 extends MovieClip { public var CR:TextField; } }//packageSection 217//Page238 (Page238) package { import flash.display.*; import flash.text.*; public class Page238 extends MovieClip { public var CR:TextField; } }//packageSection 218//Page239 (Page239) package { import flash.display.*; import flash.text.*; public class Page239 extends MovieClip { public var CR:TextField; } }//packageSection 219//Page24 (Page24) package { import flash.display.*; import flash.text.*; public class Page24 extends MovieClip { public var CR:TextField; } }//packageSection 220//Page240 (Page240) package { import flash.display.*; import flash.text.*; public class Page240 extends MovieClip { public var CR:TextField; } }//packageSection 221//Page241 (Page241) package { import flash.display.*; import flash.text.*; public class Page241 extends MovieClip { public var CR:TextField; } }//packageSection 222//Page242 (Page242) package { import flash.display.*; import flash.text.*; public class Page242 extends MovieClip { public var CR:TextField; } }//packageSection 223//Page243 (Page243) package { import flash.display.*; import flash.text.*; public class Page243 extends MovieClip { public var CR:TextField; } }//packageSection 224//Page244 (Page244) package { import flash.display.*; import flash.text.*; public class Page244 extends MovieClip { public var CR:TextField; } }//packageSection 225//Page245 (Page245) package { import flash.display.*; import flash.text.*; public class Page245 extends MovieClip { public var CR:TextField; } }//packageSection 226//Page246 (Page246) package { import flash.display.*; import flash.text.*; public class Page246 extends MovieClip { public var CR:TextField; } }//packageSection 227//Page247 (Page247) package { import flash.display.*; import flash.text.*; public class Page247 extends MovieClip { public var CR:TextField; } }//packageSection 228//Page248 (Page248) package { import flash.display.*; import flash.text.*; public class Page248 extends MovieClip { public var CR:TextField; } }//packageSection 229//Page249 (Page249) package { import flash.display.*; import flash.text.*; public class Page249 extends MovieClip { public var CR:TextField; } }//packageSection 230//Page25 (Page25) package { import flash.display.*; import flash.text.*; public class Page25 extends MovieClip { public var CR:TextField; } }//packageSection 231//Page250 (Page250) package { import flash.display.*; import flash.text.*; public class Page250 extends MovieClip { public var CR:TextField; } }//packageSection 232//Page251 (Page251) package { import flash.display.*; import flash.text.*; public class Page251 extends MovieClip { public var CR:TextField; } }//packageSection 233//Page252 (Page252) package { import flash.display.*; import flash.text.*; public class Page252 extends MovieClip { public var CR:TextField; } }//packageSection 234//Page253 (Page253) package { import flash.display.*; import flash.text.*; public class Page253 extends MovieClip { public var CR:TextField; } }//packageSection 235//Page26 (Page26) package { import flash.display.*; import flash.text.*; public class Page26 extends MovieClip { public var CR:TextField; } }//packageSection 236//Page27 (Page27) package { import flash.display.*; import flash.text.*; public class Page27 extends MovieClip { public var CR:TextField; } }//packageSection 237//Page28 (Page28) package { import flash.display.*; import flash.text.*; public class Page28 extends MovieClip { public var CR:TextField; } }//packageSection 238//Page29 (Page29) package { import flash.display.*; import flash.text.*; public class Page29 extends MovieClip { public var CR:TextField; } }//packageSection 239//Page3 (Page3) package { import flash.display.*; import flash.text.*; public class Page3 extends MovieClip { public var CR:TextField; } }//packageSection 240//Page30 (Page30) package { import flash.display.*; import flash.text.*; public class Page30 extends MovieClip { public var CR:TextField; } }//packageSection 241//Page31 (Page31) package { import flash.display.*; import flash.text.*; public class Page31 extends MovieClip { public var CR:TextField; } }//packageSection 242//Page32 (Page32) package { import flash.display.*; import flash.text.*; public class Page32 extends MovieClip { public var CR:TextField; } }//packageSection 243//Page33 (Page33) package { import flash.display.*; import flash.text.*; public class Page33 extends MovieClip { public var CR:TextField; } }//packageSection 244//Page34 (Page34) package { import flash.display.*; import flash.text.*; public class Page34 extends MovieClip { public var CR:TextField; } }//packageSection 245//Page35 (Page35) package { import flash.display.*; import flash.text.*; public class Page35 extends MovieClip { public var CR:TextField; } }//packageSection 246//Page36 (Page36) package { import flash.display.*; import flash.text.*; public class Page36 extends MovieClip { public var CR:TextField; } }//packageSection 247//Page37 (Page37) package { import flash.display.*; import flash.text.*; public class Page37 extends MovieClip { public var CR:TextField; } }//packageSection 248//Page38 (Page38) package { import flash.display.*; import flash.text.*; public class Page38 extends MovieClip { public var CR:TextField; } }//packageSection 249//Page39 (Page39) package { import flash.display.*; import flash.text.*; public class Page39 extends MovieClip { public var CR:TextField; } }//packageSection 250//Page4 (Page4) package { import flash.display.*; import flash.text.*; public class Page4 extends MovieClip { public var CR:TextField; } }//packageSection 251//Page40 (Page40) package { import flash.display.*; import flash.text.*; public class Page40 extends MovieClip { public var CR:TextField; } }//packageSection 252//Page41 (Page41) package { import flash.display.*; import flash.text.*; public class Page41 extends MovieClip { public var CR:TextField; } }//packageSection 253//Page42 (Page42) package { import flash.display.*; import flash.text.*; public class Page42 extends MovieClip { public var CR:TextField; } }//packageSection 254//Page43 (Page43) package { import flash.display.*; import flash.text.*; public class Page43 extends MovieClip { public var CR:TextField; } }//packageSection 255//Page44 (Page44) package { import flash.display.*; import flash.text.*; public class Page44 extends MovieClip { public var CR:TextField; } }//packageSection 256//Page45 (Page45) package { import flash.display.*; import flash.text.*; public class Page45 extends MovieClip { public var CR:TextField; } }//packageSection 257//Page46 (Page46) package { import flash.display.*; import flash.text.*; public class Page46 extends MovieClip { public var CR:TextField; } }//packageSection 258//Page47 (Page47) package { import flash.display.*; import flash.text.*; public class Page47 extends MovieClip { public var CR:TextField; } }//packageSection 259//Page48 (Page48) package { import flash.display.*; import flash.text.*; public class Page48 extends MovieClip { public var CR:TextField; } }//packageSection 260//Page49 (Page49) package { import flash.display.*; import flash.text.*; public class Page49 extends MovieClip { public var CR:TextField; } }//packageSection 261//Page5 (Page5) package { import flash.display.*; import flash.text.*; public class Page5 extends MovieClip { public var CR:TextField; } }//packageSection 262//Page50 (Page50) package { import flash.display.*; import flash.text.*; public class Page50 extends MovieClip { public var CR:TextField; } }//packageSection 263//Page51 (Page51) package { import flash.display.*; import flash.text.*; public class Page51 extends MovieClip { public var CR:TextField; } }//packageSection 264//Page52 (Page52) package { import flash.display.*; import flash.text.*; public class Page52 extends MovieClip { public var CR:TextField; } }//packageSection 265//Page53 (Page53) package { import flash.display.*; import flash.text.*; public class Page53 extends MovieClip { public var CR:TextField; } }//packageSection 266//Page54 (Page54) package { import flash.display.*; import flash.text.*; public class Page54 extends MovieClip { public var CR:TextField; } }//packageSection 267//Page55 (Page55) package { import flash.display.*; import flash.text.*; public class Page55 extends MovieClip { public var CR:TextField; } }//packageSection 268//Page56 (Page56) package { import flash.display.*; import flash.text.*; public class Page56 extends MovieClip { public var CR:TextField; } }//packageSection 269//Page57 (Page57) package { import flash.display.*; import flash.text.*; public class Page57 extends MovieClip { public var CR:TextField; } }//packageSection 270//Page58 (Page58) package { import flash.display.*; import flash.text.*; public class Page58 extends MovieClip { public var CR:TextField; } }//packageSection 271//Page59 (Page59) package { import flash.display.*; import flash.text.*; public class Page59 extends MovieClip { public var CR:TextField; } }//packageSection 272//Page6 (Page6) package { import flash.display.*; import flash.text.*; public class Page6 extends MovieClip { public var CR:TextField; } }//packageSection 273//Page60 (Page60) package { import flash.display.*; import flash.text.*; public class Page60 extends MovieClip { public var CR:TextField; } }//packageSection 274//Page61 (Page61) package { import flash.display.*; import flash.text.*; public class Page61 extends MovieClip { public var CR:TextField; } }//packageSection 275//Page62 (Page62) package { import flash.display.*; import flash.text.*; public class Page62 extends MovieClip { public var CR:TextField; } }//packageSection 276//Page63 (Page63) package { import flash.display.*; import flash.text.*; public class Page63 extends MovieClip { public var CR:TextField; } }//packageSection 277//Page64 (Page64) package { import flash.display.*; import flash.text.*; public class Page64 extends MovieClip { public var CR:TextField; } }//packageSection 278//Page65 (Page65) package { import flash.display.*; import flash.text.*; public class Page65 extends MovieClip { public var CR:TextField; } }//packageSection 279//Page66 (Page66) package { import flash.display.*; import flash.text.*; public class Page66 extends MovieClip { public var CR:TextField; } }//packageSection 280//Page67 (Page67) package { import flash.display.*; import flash.text.*; public class Page67 extends MovieClip { public var CR:TextField; } }//packageSection 281//Page68 (Page68) package { import flash.display.*; import flash.text.*; public class Page68 extends MovieClip { public var CR:TextField; } }//packageSection 282//Page69 (Page69) package { import flash.display.*; import flash.text.*; public class Page69 extends MovieClip { public var CR:TextField; } }//packageSection 283//Page7 (Page7) package { import flash.display.*; import flash.text.*; public class Page7 extends MovieClip { public var CR:TextField; } }//packageSection 284//Page70 (Page70) package { import flash.display.*; import flash.text.*; public class Page70 extends MovieClip { public var CR:TextField; } }//packageSection 285//Page71 (Page71) package { import flash.display.*; import flash.text.*; public class Page71 extends MovieClip { public var CR:TextField; } }//packageSection 286//Page72 (Page72) package { import flash.display.*; import flash.text.*; public class Page72 extends MovieClip { public var CR:TextField; } }//packageSection 287//Page73 (Page73) package { import flash.display.*; import flash.text.*; public class Page73 extends MovieClip { public var CR:TextField; } }//packageSection 288//Page74 (Page74) package { import flash.display.*; import flash.text.*; public class Page74 extends MovieClip { public var CR:TextField; } }//packageSection 289//Page75 (Page75) package { import flash.display.*; import flash.text.*; public class Page75 extends MovieClip { public var CR:TextField; } }//packageSection 290//Page76 (Page76) package { import flash.display.*; import flash.text.*; public class Page76 extends MovieClip { public var CR:TextField; } }//packageSection 291//Page77 (Page77) package { import flash.display.*; import flash.text.*; public class Page77 extends MovieClip { public var CR:TextField; } }//packageSection 292//Page78 (Page78) package { import flash.display.*; import flash.text.*; public class Page78 extends MovieClip { public var CR:TextField; } }//packageSection 293//Page79 (Page79) package { import flash.display.*; import flash.text.*; public class Page79 extends MovieClip { public var CR:TextField; } }//packageSection 294//Page8 (Page8) package { import flash.display.*; import flash.text.*; public class Page8 extends MovieClip { public var CR:TextField; } }//packageSection 295//Page80 (Page80) package { import flash.display.*; import flash.text.*; public class Page80 extends MovieClip { public var CR:TextField; } }//packageSection 296//Page81 (Page81) package { import flash.display.*; import flash.text.*; public class Page81 extends MovieClip { public var CR:TextField; } }//packageSection 297//Page82 (Page82) package { import flash.display.*; import flash.text.*; public class Page82 extends MovieClip { public var CR:TextField; } }//packageSection 298//Page83 (Page83) package { import flash.display.*; import flash.text.*; public class Page83 extends MovieClip { public var CR:TextField; } }//packageSection 299//Page84 (Page84) package { import flash.display.*; import flash.text.*; public class Page84 extends MovieClip { public var CR:TextField; } }//packageSection 300//Page85 (Page85) package { import flash.display.*; import flash.text.*; public class Page85 extends MovieClip { public var CR:TextField; } }//packageSection 301//Page86 (Page86) package { import flash.display.*; import flash.text.*; public class Page86 extends MovieClip { public var CR:TextField; } }//packageSection 302//Page87 (Page87) package { import flash.display.*; import flash.text.*; public class Page87 extends MovieClip { public var CR:TextField; } }//packageSection 303//Page88 (Page88) package { import flash.display.*; import flash.text.*; public class Page88 extends MovieClip { public var CR:TextField; } }//packageSection 304//Page89 (Page89) package { import flash.display.*; import flash.text.*; public class Page89 extends MovieClip { public var CR:TextField; } }//packageSection 305//Page9 (Page9) package { import flash.display.*; import flash.text.*; public class Page9 extends MovieClip { public var CR:TextField; } }//packageSection 306//Page90 (Page90) package { import flash.display.*; import flash.text.*; public class Page90 extends MovieClip { public var CR:TextField; } }//packageSection 307//Page91 (Page91) package { import flash.display.*; import flash.text.*; public class Page91 extends MovieClip { public var CR:TextField; } }//packageSection 308//Page92 (Page92) package { import flash.display.*; import flash.text.*; public class Page92 extends MovieClip { public var CR:TextField; } }//packageSection 309//Page93 (Page93) package { import flash.display.*; import flash.text.*; public class Page93 extends MovieClip { public var CR:TextField; } }//packageSection 310//Page94 (Page94) package { import flash.display.*; import flash.text.*; public class Page94 extends MovieClip { public var CR:TextField; } }//packageSection 311//Page95 (Page95) package { import flash.display.*; import flash.text.*; public class Page95 extends MovieClip { public var CR:TextField; } }//packageSection 312//Page96 (Page96) package { import flash.display.*; import flash.text.*; public class Page96 extends MovieClip { public var CR:TextField; } }//packageSection 313//Page97 (Page97) package { import flash.display.*; import flash.text.*; public class Page97 extends MovieClip { public var CR:TextField; } }//packageSection 314//Page98 (Page98) package { import flash.display.*; import flash.text.*; public class Page98 extends MovieClip { public var CR:TextField; } }//packageSection 315//Page99 (Page99) package { import flash.display.*; import flash.text.*; public class Page99 extends MovieClip { public var CR:TextField; } }//packageSection 316//PrintRangeWnd (PrintRangeWnd) package { import fl.controls.*; import flash.display.*; import flash.events.*; import fl.managers.*; import flash.text.*; import flash.ui.*; import flash.accessibility.*; public class PrintRangeWnd extends MovieClip { public var cancelBtn; private var active:Boolean; public var scalingtxt:TextField; public var fromtxt:TextField; public var pagesFrom; public var totxt:TextField; public var pagestxt:TextField; public var closeBtn:SimpleButton; private var fm:FocusManager; private var tabArray:Array; public var optNoScale; public var title:TextField; public var locale:P2FLocale; public var optFit:RadioButton; public var pagesTo:TextField; public var OKBtn:Button; public var printScaleMode:String; public function PrintRangeWnd(){ pagesFrom.restrict = (pagesTo.restrict = "0-9"); tabArray = new Array(pagesFrom, pagesTo, optNoScale, optFit, OKBtn, cancelBtn); addEventListener(FocusEvent.KEY_FOCUS_CHANGE, OnFocusChange, false, 0, true); addEventListener(KeyboardEvent.KEY_DOWN, OnKeyDown, false, 0, true); closeBtn.addEventListener(MouseEvent.CLICK, onCloseBtnClick, false, 0, true); cancelBtn.addEventListener(MouseEvent.CLICK, onCloseBtnClick, false, 0, true); OKBtn.addEventListener(MouseEvent.CLICK, onOKBtnClick, false, 0, true); __setTab_title_PrintRangeWnd_Layer1_0(); __setTab_pagesFrom_PrintRangeWnd_Layer1_0(); __setTab_pagesTo_PrintRangeWnd_Layer1_0(); __setTab_OKBtn_PrintRangeWnd_Layer1_0(); __setTab_cancelBtn_PrintRangeWnd_Layer1_0(); __setAcc_pagesFrom_PrintRangeWnd_Layer1_0(); __setAcc_pagesTo_PrintRangeWnd_Layer1_0(); __setAcc_OKBtn_PrintRangeWnd_Layer1_0(); __setAcc_cancelBtn_PrintRangeWnd_Layer1_0(); __setProp_OKBtn_PrintRangeWnd_Layer1_0(); __setProp_cancelBtn_PrintRangeWnd_Layer1_0(); __setProp_optNoScale_PrintRangeWnd_Layer1_0(); __setProp_optFit_PrintRangeWnd_Layer1_0(); } private function onCloseBtnClick(_arg1:MouseEvent){ close(); } function __setProp_cancelBtn_PrintRangeWnd_Layer1_0(){ try { cancelBtn["componentInspectorSetting"] = true; } catch(e:Error) { }; cancelBtn.emphasized = false; cancelBtn.enabled = true; cancelBtn.label = ""; cancelBtn.labelPlacement = "right"; cancelBtn.selected = false; cancelBtn.toggle = false; cancelBtn.visible = true; try { cancelBtn["componentInspectorSetting"] = false; } catch(e:Error) { }; } function __setTab_pagesFrom_PrintRangeWnd_Layer1_0(){ pagesFrom.tabIndex = 0; } function __setProp_optNoScale_PrintRangeWnd_Layer1_0(){ try { optNoScale["componentInspectorSetting"] = true; } catch(e:Error) { }; optNoScale.enabled = true; optNoScale.groupName = "Scaling"; optNoScale.label = ""; optNoScale.labelPlacement = "right"; optNoScale.selected = false; optNoScale.value = ""; optNoScale.visible = true; try { optNoScale["componentInspectorSetting"] = false; } catch(e:Error) { }; } function __setAcc_OKBtn_PrintRangeWnd_Layer1_0(){ OKBtn.accessibilityProperties = new AccessibilityProperties(); OKBtn.accessibilityProperties.name = "OK"; OKBtn.accessibilityProperties.forceSimple = true; } function __setTab_title_PrintRangeWnd_Layer1_0(){ title.tabIndex = 0; } function __setTab_pagesTo_PrintRangeWnd_Layer1_0(){ pagesTo.tabIndex = 0; } private function OnKeyDown(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == Keyboard.ESCAPE){ onCloseBtnClick(null); }; } function __setTab_cancelBtn_PrintRangeWnd_Layer1_0(){ cancelBtn.tabIndex = 0; } function __setAcc_pagesFrom_PrintRangeWnd_Layer1_0(){ pagesFrom.accessibilityProperties = new AccessibilityProperties(); pagesFrom.accessibilityProperties.name = "Pages From"; } private function onOKBtnClick(_arg1:MouseEvent){ close(); dispatchEvent(new Event("OKResult")); } private function OnFocusChange(_arg1:FocusEvent):void{ var _local2:int; if (active){ _arg1.preventDefault(); _local2 = tabArray.indexOf(_arg1.target); if (_local2 != -1){ if (_arg1.shiftKey){ _local2--; } else { _local2++; }; if (_local2 < 0){ _local2 = (tabArray.length - 1); } else { if (_local2 >= tabArray.length){ _local2 = 0; }; }; fm.setFocus(tabArray[_local2]); }; }; } function __setAcc_cancelBtn_PrintRangeWnd_Layer1_0(){ cancelBtn.accessibilityProperties = new AccessibilityProperties(); cancelBtn.accessibilityProperties.name = "Cancel"; cancelBtn.accessibilityProperties.forceSimple = true; } function __setAcc_pagesTo_PrintRangeWnd_Layer1_0(){ pagesTo.accessibilityProperties = new AccessibilityProperties(); pagesTo.accessibilityProperties.name = "Pages To"; } function __setProp_OKBtn_PrintRangeWnd_Layer1_0(){ try { OKBtn["componentInspectorSetting"] = true; } catch(e:Error) { }; OKBtn.emphasized = false; OKBtn.enabled = true; OKBtn.label = ""; OKBtn.labelPlacement = "right"; OKBtn.selected = false; OKBtn.toggle = false; OKBtn.visible = true; try { OKBtn["componentInspectorSetting"] = false; } catch(e:Error) { }; } public function close(){ printScaleMode = (optNoScale.selected) ? "noscale" : "fit"; fm.deactivate(); ModalScreen.close(); active = false; } function __setProp_optFit_PrintRangeWnd_Layer1_0(){ try { optFit["componentInspectorSetting"] = true; } catch(e:Error) { }; optFit.enabled = true; optFit.groupName = "Scaling"; optFit.label = ""; optFit.labelPlacement = "right"; optFit.selected = false; optFit.value = ""; optFit.visible = true; try { optFit["componentInspectorSetting"] = false; } catch(e:Error) { }; } public function show(_arg1:DisplayObjectContainer, _arg2:uint, _arg3:uint, _arg4:uint, _arg5:uint, _arg6:String){ title.text = locale.loadString("IDS_PDTITLE"); pagestxt.text = locale.loadString("IDS_PDPAGES"); fromtxt.text = locale.loadString("IDS_PDFROM"); totxt.text = locale.loadString("IDS_PDTO"); scalingtxt.text = locale.loadString("IDS_PDSCALING"); optNoScale.label = locale.loadString("IDS_PDNOSCALE"); optFit.label = locale.loadString("IDS_PDAUTOR"); OKBtn.label = locale.loadString("IDS_OK"); cancelBtn.label = locale.loadString("IDS_CANCEL"); pagesFrom.text = _arg4.toString(); pagesTo.text = _arg5.toString(); optNoScale.selected = (optFit.selected = false); if (_arg6 == "noscale"){ optNoScale.selected = true; } else { optFit.selected = true; }; ModalScreen.show(_arg1, this, _arg2, _arg3); if (!fm){ fm = new FocusManager(this); fm.defaultButton = OKBtn; }; fm.activate(); fm.setFocus(pagesFrom); active = true; } function __setTab_OKBtn_PrintRangeWnd_Layer1_0(){ OKBtn.tabIndex = 0; } } }//packageSection 317//RadioButton_disabledIcon (RadioButton_disabledIcon) package { import flash.display.*; public dynamic class RadioButton_disabledIcon extends MovieClip { } }//packageSection 318//RadioButton_downIcon (RadioButton_downIcon) package { import flash.display.*; public dynamic class RadioButton_downIcon extends MovieClip { } }//packageSection 319//RadioButton_overIcon (RadioButton_overIcon) package { import flash.display.*; public dynamic class RadioButton_overIcon extends MovieClip { } }//packageSection 320//RadioButton_selectedDisabledIcon (RadioButton_selectedDisabledIcon) package { import flash.display.*; public dynamic class RadioButton_selectedDisabledIcon extends MovieClip { } }//packageSection 321//RadioButton_selectedDownIcon (RadioButton_selectedDownIcon) package { import flash.display.*; public dynamic class RadioButton_selectedDownIcon extends MovieClip { } }//packageSection 322//RadioButton_selectedOverIcon (RadioButton_selectedOverIcon) package { import flash.display.*; public dynamic class RadioButton_selectedOverIcon extends MovieClip { } }//packageSection 323//RadioButton_selectedUpIcon (RadioButton_selectedUpIcon) package { import flash.display.*; public dynamic class RadioButton_selectedUpIcon extends MovieClip { } }//packageSection 324//RadioButton_upIcon (RadioButton_upIcon) package { import flash.display.*; public dynamic class RadioButton_upIcon extends MovieClip { } }//packageSection 325//ScrollArea (ScrollArea) package { import flash.display.*; public dynamic class ScrollArea extends MovieClip { public var BottomArea:MovieClip; } }//packageSection 326//ScrollArrowDown_disabledSkin (ScrollArrowDown_disabledSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_disabledSkin extends MovieClip { } }//packageSection 327//ScrollArrowDown_downSkin (ScrollArrowDown_downSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_downSkin extends MovieClip { } }//packageSection 328//ScrollArrowDown_overSkin (ScrollArrowDown_overSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_overSkin extends MovieClip { } }//packageSection 329//ScrollArrowDown_upSkin (ScrollArrowDown_upSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_upSkin extends MovieClip { } }//packageSection 330//ScrollArrowUp_disabledSkin (ScrollArrowUp_disabledSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_disabledSkin extends MovieClip { } }//packageSection 331//ScrollArrowUp_downSkin (ScrollArrowUp_downSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_downSkin extends MovieClip { } }//packageSection 332//ScrollArrowUp_overSkin (ScrollArrowUp_overSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_overSkin extends MovieClip { } }//packageSection 333//ScrollArrowUp_upSkin (ScrollArrowUp_upSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_upSkin extends MovieClip { } }//packageSection 334//ScrollBar_thumbIcon (ScrollBar_thumbIcon) package { import flash.display.*; public dynamic class ScrollBar_thumbIcon extends MovieClip { } }//packageSection 335//ScrollPain (ScrollPain) package { import flash.events.*; import fl.containers.*; public class ScrollPain extends ScrollPane { override protected function endDrag(_arg1:MouseEvent):void{ if (stage){ stage.removeEventListener(MouseEvent.MOUSE_MOVE, doDrag); }; } } }//packageSection 336//ScrollPane_disabledSkin (ScrollPane_disabledSkin) package { import flash.display.*; public dynamic class ScrollPane_disabledSkin extends MovieClip { } }//packageSection 337//ScrollPane_upSkin (ScrollPane_upSkin) package { import flash.display.*; public dynamic class ScrollPane_upSkin extends MovieClip { } }//packageSection 338//ScrollThumb_downSkin (ScrollThumb_downSkin) package { import flash.display.*; public dynamic class ScrollThumb_downSkin extends MovieClip { } }//packageSection 339//ScrollThumb_overSkin (ScrollThumb_overSkin) package { import flash.display.*; public dynamic class ScrollThumb_overSkin extends MovieClip { } }//packageSection 340//ScrollThumb_upSkin (ScrollThumb_upSkin) package { import flash.display.*; public dynamic class ScrollThumb_upSkin extends MovieClip { } }//packageSection 341//ScrollTrack_skin (ScrollTrack_skin) package { import flash.display.*; public dynamic class ScrollTrack_skin extends MovieClip { } }//packageSection 342//Settings (Settings) package { import flash.utils.*; public class Settings extends ByteArray { } }//packageSection 343//Settings2_ (Settings2_) package { import flash.utils.*; public class Settings2_ extends ByteArray { } }//packageSection 344//Slider (Slider) package { import flash.display.*; import flash.events.*; import flash.utils.*; import flash.geom.*; import flash.accessibility.*; public dynamic class Slider extends MovieClip { private var Max; public var SliderHandle:MovieClip; private var oldValue:int; public var SliderHandleBtn:ImgButton; private var Width; private var DragUpdateInt; private var Min; private var HandleOffset; public function Slider(){ SliderHandleBtn = SliderHandle.SliderHandleBtn; SliderHandleBtn.tabEnabled = false; addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown, false, 0, true); SliderHandleBtn.addEventListener(MouseEvent.MOUSE_DOWN, onHandlePress, false, 0, true); __setAcc_SliderHandle_(); __setTab_SliderHandle_(); } public function SetValue(_arg1:int):void{ if (_arg1 > Max){ _arg1 = Max; } else { if (_arg1 < Min){ _arg1 = Min; }; }; SliderHandle.x = (((_arg1 - Min) / (Max - Min)) * Width); } function __setAcc_SliderHandle_(){ SliderHandle.accessibilityProperties = new AccessibilityProperties(); SliderHandle.accessibilityProperties.silent = true; } public function onMouseDown(_arg1:MouseEvent):void{ var _local2:int; if (_arg1.target == this){ _local2 = Math.round((Min + (((_arg1.localX - (SliderHandleBtn.width / 2)) / Width) * (Max - Min)))); if (_local2 != GetValue()){ SetValue(_local2); dispatchEvent(new Event("change")); }; }; } public function SetRange(_arg1:int, _arg2:int):void{ this.Min = _arg1; this.Max = _arg2; } function onHandlePress(_arg1:MouseEvent):void{ oldValue = GetValue(); SliderHandle.startDrag(false, new Rectangle(0, HandleOffset, Width, HandleOffset)); DragUpdateInt = setInterval(DragUpdate, 100); stage.addEventListener(MouseEvent.MOUSE_UP, onHandleRelease, false, 0, true); } function onHandleRelease(_arg1:MouseEvent):void{ stage.removeEventListener(MouseEvent.MOUSE_UP, onHandleRelease); clearInterval(DragUpdateInt); SliderHandle.stopDrag(); if (oldValue != GetValue()){ dispatchEvent(new Event("change")); }; } public function GetValue():int{ return (Math.round((Min + ((SliderHandle.x / Width) * (Max - Min))))); } function __setTab_SliderHandle_(){ SliderHandle.tabIndex = 0; } public function Init():void{ SliderHandleBtn.SetImages("TBImage6", "TBImage5"); Width = Math.floor((width - SliderHandleBtn.width)); HandleOffset = SliderHandleBtn.y; } function DragUpdate():void{ if (oldValue != GetValue()){ oldValue = GetValue(); dispatchEvent(new Event("change")); }; } } }//packageSection 345//TBImage1 (TBImage1) package { import flash.display.*; public class TBImage1 extends MovieClip { } }//package import flash.display.*; class TBImage2 extends MovieClip { public function TBImage2(){ } } class TBImage3 extends MovieClip { public function TBImage3(){ } } class TBImage4 extends MovieClip { public function TBImage4(){ } } class TBImage5 extends MovieClip { public function TBImage5(){ } } class TBImage6 extends MovieClip { public function TBImage6(){ } } class TBImage7 extends MovieClip { public function TBImage7(){ } } class TBImage8 extends MovieClip { public function TBImage8(){ } } class TBImage9 extends MovieClip { public function TBImage9(){ } } class TBImage10 extends MovieClip { public function TBImage10(){ } } class TBImage11 extends MovieClip { public function TBImage11(){ } } class TBImage12 extends MovieClip { public function TBImage12(){ } } class TBImage13 extends MovieClip { public function TBImage13(){ } } class TBImage14 extends MovieClip { public function TBImage14(){ } } class TBImage15 extends MovieClip { public function TBImage15(){ } } class TBImage16 extends MovieClip { public function TBImage16(){ } } class TBImage18 extends MovieClip { public function TBImage18(){ } } class TBImage19 extends MovieClip { public function TBImage19(){ } } class TBImage20 extends MovieClip { public function TBImage20(){ } } class TBImage21 extends MovieClip { public function TBImage21(){ } } class TBImage22 extends MovieClip { public function TBImage22(){ } }Section 346//textmsg (textmsg) package { import flash.display.*; import flash.text.*; public dynamic class textmsg extends MovieClip { public var text:TextField; } }//packageSection 347//waitmsg (waitmsg) package { import flash.display.*; import flash.text.*; public dynamic class waitmsg extends MovieClip { public var msg:TextField; } }//package
Library Items
Symbol 156 Bitmap | Used by:157 | |
Symbol 157 Graphic | Uses:156 | Used by:158 |
Symbol 158 MovieClip {TBImage1} | Uses:157 | |
Symbol 159 Bitmap | Used by:160 | |
Symbol 160 Graphic | Uses:159 | Used by:161 |
Symbol 161 MovieClip {TBImage2} | Uses:160 | |
Symbol 162 Bitmap | Used by:163 | |
Symbol 163 Graphic | Uses:162 | Used by:164 |
Symbol 164 MovieClip {TBImage3} | Uses:163 | |
Symbol 165 Bitmap | Used by:166 | |
Symbol 166 Graphic | Uses:165 | Used by:167 |
Symbol 167 MovieClip {TBImage4} | Uses:166 | |
Symbol 168 Bitmap | Used by:169 | |
Symbol 169 Graphic | Uses:168 | Used by:170 |
Symbol 170 MovieClip {TBImage5} | Uses:169 | |
Symbol 171 Bitmap | Used by:172 | |
Symbol 172 Graphic | Uses:171 | Used by:173 |
Symbol 173 MovieClip {TBImage6} | Uses:172 | |
Symbol 174 Bitmap | Used by:175 | |
Symbol 175 Graphic | Uses:174 | Used by:176 |
Symbol 176 MovieClip {TBImage7} | Uses:175 | |
Symbol 177 Bitmap | Used by:178 | |
Symbol 178 Graphic | Uses:177 | Used by:179 |
Symbol 179 MovieClip {TBImage8} | Uses:178 | |
Symbol 180 Bitmap | Used by:181 | |
Symbol 181 Graphic | Uses:180 | Used by:182 |
Symbol 182 MovieClip {TBImage9} | Uses:181 | |
Symbol 183 Bitmap | Used by:184 | |
Symbol 184 Graphic | Uses:183 | Used by:185 |
Symbol 185 MovieClip {TBImage10} | Uses:184 | |
Symbol 186 Bitmap | Used by:187 | |
Symbol 187 Graphic | Uses:186 | Used by:188 |
Symbol 188 MovieClip {TBImage11} | Uses:187 | |
Symbol 189 Bitmap | Used by:190 | |
Symbol 190 Graphic | Uses:189 | Used by:191 |
Symbol 191 MovieClip {TBImage12} | Uses:190 | |
Symbol 192 Bitmap | Used by:193 | |
Symbol 193 Graphic | Uses:192 | Used by:194 |
Symbol 194 MovieClip {TBImage13} | Uses:193 | |
Symbol 195 Bitmap | Used by:196 | |
Symbol 196 Graphic | Uses:195 | Used by:197 |
Symbol 197 MovieClip {TBImage14} | Uses:196 | |
Symbol 198 Bitmap | Used by:199 | |
Symbol 199 Graphic | Uses:198 | Used by:200 |
Symbol 200 MovieClip {TBImage15} | Uses:199 | |
Symbol 201 Bitmap | Used by:202 | |
Symbol 202 Graphic | Uses:201 | Used by:203 |
Symbol 203 MovieClip {TBImage16} | Uses:202 | |
Symbol 204 Bitmap | Used by:205 | |
Symbol 205 Graphic | Uses:204 | Used by:206 |
Symbol 206 MovieClip {TBImage18} | Uses:205 | |
Symbol 207 Bitmap | Used by:208 | |
Symbol 208 Graphic | Uses:207 | Used by:209 |
Symbol 209 MovieClip {TBImage19} | Uses:208 | |
Symbol 210 Bitmap | Used by:211 | |
Symbol 211 Graphic | Uses:210 | Used by:212 |
Symbol 212 MovieClip {TBImage20} | Uses:211 | |
Symbol 213 Bitmap | Used by:214 | |
Symbol 214 Graphic | Uses:213 | Used by:215 |
Symbol 215 MovieClip {TBImage21} | Uses:214 | |
Symbol 216 Bitmap | Used by:217 | |
Symbol 217 Graphic | Uses:216 | Used by:218 |
Symbol 218 MovieClip {TBImage22} | Uses:217 | |
Symbol 219 BinaryData {Settings} | ||
Symbol 220 BinaryData {Settings2_} | ||
Symbol 1 Font | Used by:2 | |
Symbol 2 EditableText | Uses:1 | Used by:6 |
Symbol 3 Graphic | Used by:4 | |
Symbol 4 MovieClip | Uses:3 | Used by:5 |
Symbol 5 MovieClip | Uses:4 | Used by:6 |
Symbol 6 MovieClip {waitmsg} | Uses:2 5 | |
Symbol 7 Font | Used by:8 50 51 52 53 54 74 75 143 146 148 152 | |
Symbol 8 EditableText | Uses:7 | Used by:9 |
Symbol 9 MovieClip {textmsg} | Uses:8 | |
Symbol 10 Graphic | Used by:11 | |
Symbol 11 MovieClip | Uses:10 | Used by:12 |
Symbol 12 MovieClip {ScrollArea} | Uses:11 | |
Symbol 13 Graphic | Used by:14 | |
Symbol 14 MovieClip | Uses:13 | Used by:33 73 77 134 |
Symbol 15 MovieClip {fl.core.ComponentShim} | Used by:33 73 77 133 134 | |
Symbol 16 Graphic | Used by:17 | |
Symbol 17 MovieClip {RadioButton_upIcon} | Uses:16 | Used by:33 |
Symbol 18 Graphic | Used by:19 28 | |
Symbol 19 MovieClip {RadioButton_overIcon} | Uses:18 | Used by:33 |
Symbol 20 Graphic | Used by:21 29 | |
Symbol 21 MovieClip {RadioButton_downIcon} | Uses:20 | Used by:33 |
Symbol 22 Graphic | Used by:23 30 | |
Symbol 23 MovieClip {RadioButton_disabledIcon} | Uses:22 | Used by:33 |
Symbol 24 Graphic | Used by:27 | |
Symbol 25 Graphic | Used by:26 | |
Symbol 26 MovieClip | Uses:25 | Used by:27 28 29 30 |
Symbol 27 MovieClip {RadioButton_selectedUpIcon} | Uses:24 26 | Used by:33 |
Symbol 28 MovieClip {RadioButton_selectedOverIcon} | Uses:18 26 | Used by:33 |
Symbol 29 MovieClip {RadioButton_selectedDownIcon} | Uses:20 26 | Used by:33 |
Symbol 30 MovieClip {RadioButton_selectedDisabledIcon} | Uses:22 26 | Used by:33 |
Symbol 31 Graphic | Used by:32 | |
Symbol 32 MovieClip {focusRectSkin} | Uses:31 | Used by:33 73 133 |
Symbol 33 MovieClip {fl.controls.RadioButton} | Uses:14 15 17 19 21 23 27 28 29 30 32 | Used by:76 |
Symbol 34 Graphic | Used by:35 | |
Symbol 35 MovieClip | Uses:34 | Used by:76 |
Symbol 36 Graphic | Used by:37 | |
Symbol 37 MovieClip | Uses:36 | Used by:42 |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip | Uses:38 | Used by:42 |
Symbol 40 Graphic | Used by:41 | |
Symbol 41 MovieClip | Uses:40 | Used by:42 |
Symbol 42 MovieClip | Uses:37 39 41 | Used by:76 |
Symbol 43 Graphic | Used by:44 | |
Symbol 44 MovieClip | Uses:43 | Used by:49 |
Symbol 45 Graphic | Used by:46 | |
Symbol 46 MovieClip | Uses:45 | Used by:49 |
Symbol 47 Graphic | Used by:48 49 | |
Symbol 48 MovieClip | Uses:47 | Used by:49 |
Symbol 49 Button | Uses:44 46 48 47 | Used by:76 |
Symbol 50 EditableText | Uses:7 | Used by:76 |
Symbol 51 EditableText | Uses:7 | Used by:76 |
Symbol 52 EditableText | Uses:7 | Used by:76 |
Symbol 53 EditableText | Uses:7 | Used by:76 |
Symbol 54 EditableText | Uses:7 | Used by:76 |
Symbol 55 Graphic | Used by:56 | |
Symbol 56 MovieClip {Button_disabledSkin} | Uses:55 | Used by:73 |
Symbol 57 Graphic | Used by:58 | |
Symbol 58 MovieClip {Button_downSkin} | Uses:57 | Used by:73 |
Symbol 59 Graphic | Used by:60 | |
Symbol 60 MovieClip {Button_emphasizedSkin} | Uses:59 | Used by:73 |
Symbol 61 Graphic | Used by:62 | |
Symbol 62 MovieClip {Button_overSkin} | Uses:61 | Used by:73 |
Symbol 63 Graphic | Used by:64 | |
Symbol 64 MovieClip {Button_selectedDisabledSkin} | Uses:63 | Used by:73 |
Symbol 65 Graphic | Used by:66 | |
Symbol 66 MovieClip {Button_selectedDownSkin} | Uses:65 | Used by:73 |
Symbol 67 Graphic | Used by:68 | |
Symbol 68 MovieClip {Button_selectedOverSkin} | Uses:67 | Used by:73 |
Symbol 69 Graphic | Used by:70 | |
Symbol 70 MovieClip {Button_selectedUpSkin} | Uses:69 | Used by:73 |
Symbol 71 Graphic | Used by:72 | |
Symbol 72 MovieClip {Button_upSkin} | Uses:71 | Used by:73 |
Symbol 73 MovieClip {fl.controls.Button} | Uses:14 15 56 58 60 62 64 66 68 70 72 32 | Used by:76 |
Symbol 74 EditableText | Uses:7 | Used by:76 |
Symbol 75 EditableText | Uses:7 | Used by:76 |
Symbol 76 MovieClip {PrintRangeWnd} | Uses:35 42 49 50 51 52 53 54 73 33 74 75 | |
Symbol 77 MovieClip {fl.controls.Label} | Uses:14 15 | |
Symbol 78 Graphic | Used by:79 | |
Symbol 79 MovieClip {def_bgr} | Uses:78 | |
Symbol 80 Graphic | Used by:81 | |
Symbol 81 Button {button} | Uses:80 | |
Symbol 82 Graphic | Used by:83 | |
Symbol 83 MovieClip {manualbutton} | Uses:82 | Used by:84 88 89 90 91 92 93 94 95 96 97 98 99 100 141 |
Symbol 84 MovieClip {def_fullscreen} | Uses:83 | Used by:155 |
Symbol 85 Button {ImgButton} | Used by:86 | |
Symbol 86 MovieClip {print2flash_fla.MCSlider_47} | Uses:85 | Used by:87 |
Symbol 87 MovieClip {Slider} | Uses:86 | Used by:155 |
Symbol 88 MovieClip {def_forward} | Uses:83 | Used by:155 |
Symbol 89 MovieClip {def_back} | Uses:83 | Used by:155 |
Symbol 90 MovieClip {def_nextpage} | Uses:83 | Used by:155 |
Symbol 91 MovieClip {def_more} | Uses:83 | Used by:155 |
Symbol 92 MovieClip {def_selMode} | Uses:83 | Used by:155 |
Symbol 93 MovieClip {def_newwindow} | Uses:83 | Used by:155 |
Symbol 94 MovieClip {def_help} | Uses:83 | Used by:155 |
Symbol 95 MovieClip {def_rotate} | Uses:83 | Used by:155 |
Symbol 96 MovieClip {def_prevpage} | Uses:83 | Used by:155 |
Symbol 97 MovieClip {def_scalePage} | Uses:83 | Used by:155 |
Symbol 98 MovieClip {def_scaleWidth} | Uses:83 | Used by:155 |
Symbol 99 MovieClip {def_moveMode} | Uses:83 | Used by:155 |
Symbol 100 MovieClip {def_print} | Uses:83 | Used by:155 |
Symbol 101 Graphic | Used by:102 | |
Symbol 102 MovieClip | Uses:101 | Used by:105 106 |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 MovieClip | Uses:103 | Used by:105 106 |
Symbol 105 MovieClip {ScrollPane_disabledSkin} | Uses:102 104 | Used by:134 |
Symbol 106 MovieClip {ScrollPane_upSkin} | Uses:102 104 | Used by:134 |
Symbol 107 Graphic | Used by:108 | |
Symbol 108 MovieClip {ScrollTrack_skin} | Uses:107 | Used by:133 |
Symbol 109 Graphic | Used by:112 | |
Symbol 110 Graphic | Used by:111 114 118 127 | |
Symbol 111 MovieClip | Uses:110 | Used by:112 122 124 |
Symbol 112 MovieClip {ScrollArrowUp_downSkin} | Uses:109 111 | Used by:133 |
Symbol 113 Graphic | Used by:114 | |
Symbol 114 MovieClip {ScrollArrowDown_downSkin} | Uses:113 110 | Used by:133 |
Symbol 115 Graphic | Used by:116 | |
Symbol 116 MovieClip {ScrollThumb_downSkin} | Uses:115 | Used by:133 |
Symbol 117 Graphic | Used by:118 | |
Symbol 118 MovieClip {ScrollArrowDown_overSkin} | Uses:117 110 | Used by:133 |
Symbol 119 Graphic | Used by:120 | |
Symbol 120 MovieClip {ScrollThumb_overSkin} | Uses:119 | Used by:133 |
Symbol 121 Graphic | Used by:122 | |
Symbol 122 MovieClip {ScrollArrowUp_overSkin} | Uses:121 111 | Used by:133 |
Symbol 123 Graphic | Used by:124 127 | |
Symbol 124 MovieClip {ScrollArrowUp_upSkin} | Uses:123 111 | Used by:133 |
Symbol 125 Graphic | Used by:126 | |
Symbol 126 MovieClip {ScrollThumb_upSkin} | Uses:125 | Used by:133 |
Symbol 127 MovieClip {ScrollArrowDown_upSkin} | Uses:123 110 | Used by:133 |
Symbol 128 Graphic | Used by:129 130 | |
Symbol 129 MovieClip {ScrollArrowDown_disabledSkin} | Uses:128 | Used by:133 |
Symbol 130 MovieClip {ScrollArrowUp_disabledSkin} | Uses:128 | Used by:133 |
Symbol 131 Graphic | Used by:132 | |
Symbol 132 MovieClip {ScrollBar_thumbIcon} | Uses:131 | Used by:133 |
Symbol 133 MovieClip {fl.controls.ScrollBar} | Uses:108 15 32 112 114 116 118 120 122 124 126 127 129 130 132 | Used by:134 |
Symbol 134 MovieClip {ScrollPain} | Uses:14 15 105 106 133 | Used by:Timeline |
Symbol 135 MovieClip {fl.containers.ScrollPane} | ||
Symbol 136 Graphic | Used by:137 | |
Symbol 137 MovieClip | Uses:136 | Used by:Timeline |
Symbol 138 Graphic | Used by:139 | |
Symbol 139 MovieClip | Uses:138 | Used by:Timeline |
Symbol 140 MovieClip | Used by:155 | |
Symbol 141 MovieClip {print2flash_fla.def_searchbut_27} | Uses:83 | Used by:155 |
Symbol 142 Graphic | Used by:144 | |
Symbol 143 EditableText | Uses:7 | Used by:144 |
Symbol 144 MovieClip {print2flash_fla.Timeline_30} | Uses:142 143 | Used by:155 |
Symbol 145 Graphic | Used by:150 | |
Symbol 146 EditableText | Uses:7 | Used by:147 |
Symbol 147 MovieClip {print2flash_fla.Timeline_32} | Uses:146 | Used by:150 |
Symbol 148 EditableText | Uses:7 | Used by:149 |
Symbol 149 MovieClip {print2flash_fla.Timeline_33} | Uses:148 | Used by:150 |
Symbol 150 MovieClip {print2flash_fla.Timeline_31} | Uses:145 147 149 | Used by:155 |
Symbol 151 Graphic | Used by:153 | |
Symbol 152 EditableText | Uses:7 | Used by:153 |
Symbol 153 MovieClip {print2flash_fla.Timeline_50} | Uses:151 152 | Used by:155 |
Symbol 154 MovieClip | Used by:155 | |
Symbol 155 MovieClip {print2flash_fla._toolbar_25} | Uses:140 141 100 144 150 99 98 97 96 95 94 93 92 91 90 89 88 87 84 153 154 | Used by:Timeline |
Symbol 221 Graphic | Used by:227 291 301 310 318 343 360 369 378 391 400 409 417 426 435 444 453 462 471 480 489 498 507 516 525 534 543 552 561 570 580 589 598 607 618 627 636 644 653 666 675 683 696 709 718 727 736 745 756 764 774 783 792 800 810 821 830 839 848 857 868 877 886 894 905 918 927 935 947 956 970 980 989 997 1007 1015 1026 1035 1048 1056 1064 1075 1084 1092 1103 1112 1122 1142 1150 1160 1169 1178 1187 1197 1965 1976 1984 1992 2000 2009 2018 2027 2035 2043 2053 2067 2077 2086 2097 2107 2115 2123 2131 2139 2147 2155 2163 2171 2179 2187 2195 2203 2211 2219 2227 2235 2243 2251 2260 2272 2278 2297 2308 2317 2326 2335 2344 2353 2362 2371 2380 2389 2398 2407 2415 2424 2433 2442 2450 2459 2468 2478 2488 2496 2505 2513 2522 2532 2540 2549 2558 2566 2585 2594 2604 2613 2621 2630 2639 2648 2657 2666 2674 2683 2692 2700 2709 2717 2726 2735 2744 2753 2762 2771 2780 2789 2798 2807 2816 2825 2834 2843 2851 2860 2869 2878 2887 2896 2905 2914 2924 2933 2942 2951 2963 2972 2981 2993 3008 3021 3033 3042 3051 3060 3069 3077 3086 3095 3117 3125 3136 3147 3156 3165 3173 3182 3191 3200 3212 3220 3228 3237 3245 3254 3263 3271 3284 3293 3302 3313 3322 3331 3340 3349 3358 3367 3375 3385 3391 3397 3403 3418 3428 | |
Symbol 222 Font | Used by:224 | |
Symbol 223 Graphic | Used by:227 | |
Symbol 224 EditableText | Uses:222 | Used by:227 |
Symbol 225 Bitmap | Used by:226 | |
Symbol 226 Graphic | Uses:225 | Used by:227 |
Symbol 227 MovieClip {Page1} | Uses:221 223 224 226 | |
Symbol 228 Font | Used by:230 | |
Symbol 229 Graphic | Used by:291 | |
Symbol 230 EditableText | Uses:228 | Used by:291 |
Symbol 231 Bitmap | Used by:283 1960 | |
Symbol 232 Bitmap | Used by:283 | |
Symbol 233 Bitmap | Used by:283 | |
Symbol 234 Bitmap | Used by:283 1960 | |
Symbol 235 Bitmap | Used by:283 | |
Symbol 236 Bitmap | Used by:283 | |
Symbol 237 Bitmap | Used by:283 | |
Symbol 238 Bitmap | Used by:283 | |
Symbol 239 Bitmap | Used by:283 | |
Symbol 240 Bitmap | Used by:283 | |
Symbol 241 Bitmap | Used by:283 1960 | |
Symbol 242 Bitmap | Used by:283 | |
Symbol 243 Bitmap | Used by:283 1960 | |
Symbol 244 Bitmap | Used by:283 | |
Symbol 245 Bitmap | Used by:283 1960 | |
Symbol 246 Bitmap | Used by:283 | |
Symbol 247 Bitmap | Used by:283 1960 | |
Symbol 248 Bitmap | Used by:283 1960 | |
Symbol 249 Bitmap | Used by:283 1960 | |
Symbol 250 Bitmap | Used by:283 1960 | |
Symbol 251 Bitmap | Used by:283 | |
Symbol 252 Bitmap | Used by:283 | |
Symbol 253 Bitmap | Used by:283 | |
Symbol 254 Bitmap | Used by:283 | |
Symbol 255 Bitmap | Used by:283 1960 | |
Symbol 256 Bitmap | Used by:283 | |
Symbol 257 Bitmap | Used by:283 | |
Symbol 258 Bitmap | Used by:283 | |
Symbol 259 Bitmap | Used by:283 | |
Symbol 260 Bitmap | Used by:283 | |
Symbol 261 Bitmap | Used by:283 | |
Symbol 262 Bitmap | Used by:283 | |
Symbol 263 Bitmap | Used by:283 | |
Symbol 264 Bitmap | Used by:283 | |
Symbol 265 Bitmap | Used by:283 | |
Symbol 266 Bitmap | Used by:283 | |
Symbol 267 Bitmap | Used by:283 | |
Symbol 268 Bitmap | Used by:283 | |
Symbol 269 Bitmap | Used by:283 | |
Symbol 270 Bitmap | Used by:283 | |
Symbol 271 Bitmap | Used by:283 | |
Symbol 272 Bitmap | Used by:283 | |
Symbol 273 Bitmap | Used by:283 | |
Symbol 274 Bitmap | Used by:283 | |
Symbol 275 Bitmap | Used by:283 | |
Symbol 276 Bitmap | Used by:283 | |
Symbol 277 Bitmap | Used by:283 | |
Symbol 278 Bitmap | Used by:283 | |
Symbol 279 Bitmap | Used by:283 | |
Symbol 280 Bitmap | Used by:283 | |
Symbol 281 Bitmap | Used by:283 | |
Symbol 282 Bitmap | Used by:283 | |
Symbol 283 Graphic | Uses:231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | Used by:291 |
Symbol 284 Font | Used by:288 298 308 317 326 339 351 367 376 385 398 399 407 408 424 433 442 443 451 460 469 478 479 487 488 496 497 505 506 514 523 524 532 533 541 542 550 551 559 560 568 579 587 596 605 614 625 634 643 651 662 665 673 682 692 705 708 716 717 725 726 734 735 743 754 763 771 782 790 791 799 809 818 820 828 829 837 838 846 847 855 865 867 875 876 884 885 893 902 904 925 926 934 944 946 954 955 978 979 987 988 996 1005 1006 1014 1023 1033 1034 1043 1045 1055 1063 1073 1082 1083 1091 1101 1102 1110 1111 1119 1131 1139 1158 1167 1168 1176 1177 1185 1186 1964 1973 1983 1991 1999 2007 2016 2017 2025 2026 2034 2042 2050 2060 2076 2085 2095 2105 2114 2122 2130 2138 2146 2154 2162 2170 2178 2186 2194 2202 2210 2218 2226 2234 2242 2250 2258 2287 2306 2315 2324 2333 2334 2342 2343 2351 2352 2360 2369 2370 2378 2379 2387 2388 2396 2397 2405 2414 2422 2423 2431 2432 2440 2441 2457 2466 2476 2485 2495 2503 2512 2520 2521 2529 2548 2556 2565 2579 2593 2601 2611 2612 2620 2628 2629 2637 2646 2655 2656 2664 2665 2673 2681 2682 2690 2699 2707 2716 2724 2733 2734 2742 2743 2751 2752 2760 2761 2769 2770 2778 2787 2796 2805 2806 2814 2815 2823 2832 2833 2841 2842 2850 2858 2867 2868 2876 2885 2894 2895 2903 2904 2912 2921 2923 2931 2940 2949 2959 2960 2970 2971 2979 2980 2989 3001 3002 3016 3029 3040 3041 3049 3050 3058 3059 3067 3068 3085 3093 3103 3124 3134 3143 3145 3154 3155 3163 3164 3172 3180 3181 3189 3198 3199 3208 3219 3227 3235 3244 3253 3261 3262 3270 3279 3280 3291 3292 3300 3301 3309 3312 3320 3321 3329 3330 3338 3339 3347 3356 3357 3365 3366 3374 3384 3413 3415 | |
Symbol 285 Font | Used by:287 | |
Symbol 286 Graphic | Used by:291 | |
Symbol 287 EditableText | Uses:285 | Used by:291 |
Symbol 288 Text | Uses:284 289 290 | Used by:291 |
Symbol 289 Font | Used by:288 317 376 377 385 390 398 399 407 408 416 424 433 434 442 443 451 460 461 469 470 478 479 487 488 496 497 505 514 523 524 532 541 542 550 551 559 560 568 569 579 587 596 605 614 617 625 626 634 635 643 651 662 673 674 682 692 695 705 708 716 717 725 726 734 735 743 744 754 755 763 771 773 781 782 790 791 799 809 818 820 828 829 837 838 846 847 855 856 865 867 875 876 884 885 893 902 904 912 915 925 926 934 944 946 954 955 963 978 979 987 988 996 1005 1006 1014 1023 1025 1033 1034 1043 1055 1063 1073 1074 1082 1083 1091 1101 1102 1110 1111 1119 1135 1139 1149 1158 1159 1167 1168 1176 1177 1185 1186 1194 1964 1973 1983 1991 1999 2007 2008 2016 2017 2025 2026 2034 2042 2050 2060 2076 2085 2095 2105 2114 2122 2130 2138 2146 2154 2162 2170 2178 2186 2194 2202 2210 2218 2226 2234 2242 2250 2258 2269 2315 2324 2325 2333 2334 2342 2343 2351 2352 2360 2361 2369 2370 2378 2379 2387 2388 2396 2397 2405 2414 2422 2431 2432 2440 2449 2457 2466 2467 2485 2486 2495 2503 2504 2512 2520 2521 2529 2539 2556 2557 2565 2601 2611 2612 2620 2628 2629 2637 2638 2646 2647 2655 2656 2664 2665 2673 2681 2682 2690 2691 2699 2707 2708 2716 2724 2725 2733 2734 2742 2743 2751 2760 2761 2769 2770 2778 2779 2787 2788 2796 2797 2805 2806 2814 2815 2823 2832 2833 2841 2842 2850 2858 2867 2868 2876 2877 2885 2894 2895 2903 2904 2912 2921 2923 2931 2932 2940 2949 2959 2960 2962 2970 2971 2979 2980 2989 2990 3001 3004 3005 3016 3018 3020 3029 3030 3032 3040 3049 3050 3058 3059 3067 3068 3076 3093 3103 3116 3124 3143 3154 3155 3163 3164 3172 3180 3181 3189 3190 3198 3199 3208 3209 3211 3219 3227 3235 3244 3261 3262 3270 3279 3280 3282 3283 3291 3292 3300 3301 3309 3312 3320 3321 3329 3330 3338 3339 3347 3348 3356 3357 3365 3366 3374 | |
Symbol 290 Font | Used by:288 376 385 398 407 408 424 442 443 460 469 487 488 496 505 514 523 532 541 550 559 568 579 605 634 662 673 682 692 705 716 725 734 735 743 754 763 771 781 790 791 799 809 818 828 837 846 855 865 875 876 884 893 902 904 912 925 926 934 944 954 963 978 987 1025 1033 1043 1055 1063 1073 1082 1101 1110 1119 1139 1194 1964 1973 1975 2017 2025 2034 2114 2122 2130 2138 2146 2154 2162 2170 2178 2186 2194 2202 2210 2218 2226 2234 2242 2250 2258 2324 2457 2466 2503 2520 2529 2556 2601 2611 2620 2628 2681 2699 2814 2858 2867 2876 2885 2894 2903 2912 2921 2931 2932 2940 2949 2959 2970 2979 2980 2989 2990 3001 3016 3029 3040 3049 3050 3058 3059 3067 3093 3103 3124 3143 3163 3172 3180 3189 3198 3208 3219 3279 3291 3292 3300 3301 3309 3320 3321 3329 3330 3338 3339 3347 3348 3356 3357 3365 3366 3374 3413 3415 3427 | |
Symbol 291 MovieClip {Page2} | Uses:221 229 230 283 286 287 288 | |
Symbol 292 Font | Used by:294 | |
Symbol 293 Graphic | Used by:301 | |
Symbol 294 EditableText | Uses:292 | Used by:301 |
Symbol 295 Font | Used by:297 | |
Symbol 296 Graphic | Used by:301 | |
Symbol 297 EditableText | Uses:295 | Used by:301 |
Symbol 298 Text | Uses:284 299 300 | Used by:301 |
Symbol 299 Font | Used by:298 | |
Symbol 300 Font | Used by:298 | |
Symbol 301 MovieClip {Page3} | Uses:221 293 294 296 297 298 | |
Symbol 302 Font | Used by:304 | |
Symbol 303 Graphic | Used by:310 | |
Symbol 304 EditableText | Uses:302 | Used by:310 |
Symbol 305 Font | Used by:307 | |
Symbol 306 Graphic | Used by:310 | |
Symbol 307 EditableText | Uses:305 | Used by:310 |
Symbol 308 Text | Uses:284 309 | Used by:310 |
Symbol 309 Font | Used by:308 317 399 424 425 443 451 460 478 479 487 497 505 506 523 524 532 533 542 550 551 560 568 579 596 614 625 634 662 665 692 708 717 771 782 791 809 828 829 837 838 847 902 944 946 954 955 979 987 988 1014 1023 1034 1043 1045 1055 1110 1158 1168 1177 1194 1983 1999 2007 2016 2060 2076 2114 2122 2130 2162 2186 2210 2226 2250 2258 2259 2269 2342 2343 2351 2360 2369 2370 2379 2388 2397 2405 2406 2423 2432 2441 2457 2458 2486 2512 2521 2529 2531 2601 2611 2612 2629 2681 2690 2691 2734 2743 2752 2760 2805 2806 2815 2824 2832 2858 2859 2868 2876 2885 2886 2895 2904 2912 2913 2921 2923 2940 2941 2950 2959 2960 2970 2989 2992 3001 3002 3004 3007 3029 3041 3050 3068 3124 3198 3235 3236 3244 3261 3279 3280 3291 3300 3309 3312 3320 3321 3347 3356 | |
Symbol 310 MovieClip {Page4} | Uses:221 303 304 306 307 308 | |
Symbol 311 Font | Used by:313 | |
Symbol 312 Graphic | Used by:318 | |
Symbol 313 EditableText | Uses:311 | Used by:318 |
Symbol 314 Font | Used by:316 | |
Symbol 315 Graphic | Used by:318 | |
Symbol 316 EditableText | Uses:314 | Used by:318 |
Symbol 317 Text | Uses:284 289 309 | Used by:318 |
Symbol 318 MovieClip {Page5} | Uses:221 312 313 315 316 317 | |
Symbol 319 Font | Used by:321 | |
Symbol 320 Graphic | Used by:343 | |
Symbol 321 EditableText | Uses:319 | Used by:343 |
Symbol 322 Font | Used by:326 376 424 460 523 579 587 596 605 614 651 662 692 705 754 763 771 809 818 865 902 944 978 1005 1023 1063 1073 1101 1131 1158 1964 1973 1999 2007 2042 2050 2060 2076 2085 2095 2105 2114 2122 2130 2138 2146 2154 2162 2170 2178 2186 2194 2202 2210 2218 2226 2234 2242 2250 2258 | |
Symbol 323 Font | Used by:325 | |
Symbol 324 Graphic | Used by:343 | |
Symbol 325 EditableText | Uses:323 | Used by:343 |
Symbol 326 Text | Uses:322 284 327 328 329 330 331 332 | Used by:343 |
Symbol 327 Font | Used by:326 | |
Symbol 328 Font | Used by:326 351 2287 2292 2921 3413 | |
Symbol 329 Font | Used by:326 351 596 614 625 634 2287 2292 2360 2512 2602 2824 2832 2989 | |
Symbol 330 Font | Used by:326 337 339 351 353 356 359 376 596 614 617 625 626 634 635 643 1964 1973 1983 1991 1999 2287 2290 2292 2315 2324 2360 2503 2520 2673 2690 2778 2823 2832 3001 3103 3143 3145 3154 3208 3209 3227 | |
Symbol 331 Font | Used by:326 | |
Symbol 332 Font | Used by:326 339 | |
Symbol 333 Font | Used by:334 338 342 352 354 358 | |
Symbol 334 Text | Uses:333 | Used by:343 |
Symbol 335 Font | Used by:336 341 | |
Symbol 336 Text | Uses:335 | Used by:343 |
Symbol 337 Text | Uses:330 | Used by:343 |
Symbol 338 Text | Uses:333 | Used by:343 |
Symbol 339 Text | Uses:284 330 332 | Used by:343 |
Symbol 340 Graphic | Used by:343 | |
Symbol 341 Text | Uses:335 | Used by:343 |
Symbol 342 Text | Uses:333 | Used by:343 |
Symbol 343 MovieClip {Page6} | Uses:221 320 321 324 325 326 334 336 337 338 339 340 341 342 | |
Symbol 344 Font | Used by:346 | |
Symbol 345 Graphic | Used by:360 | |
Symbol 346 EditableText | Uses:344 | Used by:360 |
Symbol 347 Graphic | Used by:360 | |
Symbol 348 Font | Used by:350 | |
Symbol 349 Graphic | Used by:360 | |
Symbol 350 EditableText | Uses:348 | Used by:360 |
Symbol 351 Text | Uses:330 284 328 329 | Used by:360 |
Symbol 352 Text | Uses:333 | Used by:360 |
Symbol 353 Text | Uses:330 | Used by:360 |
Symbol 354 Text | Uses:333 | Used by:360 |
Symbol 355 Font | Used by:356 1135 2064 | |
Symbol 356 Text | Uses:355 330 | Used by:360 |
Symbol 357 Graphic | Used by:360 | |
Symbol 358 Text | Uses:333 | Used by:360 |
Symbol 359 Text | Uses:330 | Used by:360 |
Symbol 360 MovieClip {Page7} | Uses:221 345 346 347 349 350 351 352 353 354 356 357 358 359 | |
Symbol 361 Font | Used by:363 | |
Symbol 362 Graphic | Used by:369 | |
Symbol 363 EditableText | Uses:361 | Used by:369 |
Symbol 364 Font | Used by:366 | |
Symbol 365 Graphic | Used by:369 | |
Symbol 366 EditableText | Uses:364 | Used by:369 |
Symbol 367 Text | Uses:284 368 | Used by:369 |
Symbol 368 Font | Used by:367 | |
Symbol 369 MovieClip {Page8} | Uses:221 362 363 365 366 367 | |
Symbol 370 Font | Used by:372 | |
Symbol 371 Graphic | Used by:378 | |
Symbol 372 EditableText | Uses:370 | Used by:378 |
Symbol 373 Font | Used by:375 | |
Symbol 374 Graphic | Used by:378 | |
Symbol 375 EditableText | Uses:373 | Used by:378 |
Symbol 376 Text | Uses:322 284 290 289 330 | Used by:378 |
Symbol 377 Text | Uses:289 | Used by:378 |
Symbol 378 MovieClip {Page9} | Uses:221 371 372 374 375 376 377 | |
Symbol 379 Font | Used by:381 | |
Symbol 380 Graphic | Used by:391 | |
Symbol 381 EditableText | Uses:379 | Used by:391 |
Symbol 382 Font | Used by:384 | |
Symbol 383 Graphic | Used by:391 | |
Symbol 384 EditableText | Uses:382 | Used by:391 |
Symbol 385 Text | Uses:289 386 284 387 388 389 290 | Used by:391 |
Symbol 386 Font | Used by:385 2271 2724 2725 2796 2805 2876 2885 2940 3001 3016 3143 3320 | |
Symbol 387 Font | Used by:385 523 651 | |
Symbol 388 Font | Used by:385 | |
Symbol 389 Font | Used by:385 | |
Symbol 390 Text | Uses:289 | Used by:391 |
Symbol 391 MovieClip {Page10} | Uses:221 380 381 383 384 385 390 | |
Symbol 392 Font | Used by:394 | |
Symbol 393 Graphic | Used by:400 | |
Symbol 394 EditableText | Uses:392 | Used by:400 |
Symbol 395 Font | Used by:397 | |
Symbol 396 Graphic | Used by:400 | |
Symbol 397 EditableText | Uses:395 | Used by:400 |
Symbol 398 Text | Uses:289 284 290 | Used by:400 |
Symbol 399 Text | Uses:289 284 309 | Used by:400 |
Symbol 400 MovieClip {Page11} | Uses:221 393 394 396 397 398 399 | |
Symbol 401 Font | Used by:403 | |
Symbol 402 Graphic | Used by:409 | |
Symbol 403 EditableText | Uses:401 | Used by:409 |
Symbol 404 Font | Used by:406 | |
Symbol 405 Graphic | Used by:409 | |
Symbol 406 EditableText | Uses:404 | Used by:409 |
Symbol 407 Text | Uses:289 284 290 | Used by:409 |
Symbol 408 Text | Uses:289 290 284 | Used by:409 |
Symbol 409 MovieClip {Page12} | Uses:221 402 403 405 406 407 408 | |
Symbol 410 Font | Used by:412 | |
Symbol 411 Graphic | Used by:417 | |
Symbol 412 EditableText | Uses:410 | Used by:417 |
Symbol 413 Font | Used by:415 | |
Symbol 414 Graphic | Used by:417 | |
Symbol 415 EditableText | Uses:413 | Used by:417 |
Symbol 416 Text | Uses:289 | Used by:417 |
Symbol 417 MovieClip {Page13} | Uses:221 411 412 414 415 416 | |
Symbol 418 Font | Used by:420 | |
Symbol 419 Graphic | Used by:426 | |
Symbol 420 EditableText | Uses:418 | Used by:426 |
Symbol 421 Font | Used by:423 | |
Symbol 422 Graphic | Used by:426 | |
Symbol 423 EditableText | Uses:421 | Used by:426 |
Symbol 424 Text | Uses:322 284 290 289 309 | Used by:426 |
Symbol 425 Text | Uses:309 | Used by:426 |
Symbol 426 MovieClip {Page14} | Uses:221 419 420 422 423 424 425 | |
Symbol 427 Font | Used by:429 | |
Symbol 428 Graphic | Used by:435 | |
Symbol 429 EditableText | Uses:427 | Used by:435 |
Symbol 430 Font | Used by:432 | |
Symbol 431 Graphic | Used by:435 | |
Symbol 432 EditableText | Uses:430 | Used by:435 |
Symbol 433 Text | Uses:289 284 | Used by:435 |
Symbol 434 Text | Uses:289 | Used by:435 |
Symbol 435 MovieClip {Page15} | Uses:221 428 429 431 432 433 434 | |
Symbol 436 Font | Used by:438 | |
Symbol 437 Graphic | Used by:444 | |
Symbol 438 EditableText | Uses:436 | Used by:444 |
Symbol 439 Font | Used by:441 | |
Symbol 440 Graphic | Used by:444 | |
Symbol 441 EditableText | Uses:439 | Used by:444 |
Symbol 442 Text | Uses:289 284 290 | Used by:444 |
Symbol 443 Text | Uses:289 290 284 309 | Used by:444 |
Symbol 444 MovieClip {Page16} | Uses:221 437 438 440 441 442 443 | |
Symbol 445 Font | Used by:447 | |
Symbol 446 Graphic | Used by:453 | |
Symbol 447 EditableText | Uses:445 | Used by:453 |
Symbol 448 Font | Used by:450 | |
Symbol 449 Graphic | Used by:453 | |
Symbol 450 EditableText | Uses:448 | Used by:453 |
Symbol 451 Text | Uses:289 284 309 452 | Used by:453 |
Symbol 452 Font | Used by:451 497 506 523 550 551 560 568 579 662 828 829 837 838 847 902 944 954 955 987 1034 1043 1045 1194 2130 2210 2457 2521 2529 2611 2612 2858 2859 2886 2912 2921 2940 2950 2959 2960 2970 3001 3029 3041 3050 3068 3124 3279 3280 3291 3309 3312 3320 3321 3347 3356 | |
Symbol 453 MovieClip {Page17} | Uses:221 446 447 449 450 451 | |
Symbol 454 Font | Used by:456 | |
Symbol 455 Graphic | Used by:462 | |
Symbol 456 EditableText | Uses:454 | Used by:462 |
Symbol 457 Font | Used by:459 | |
Symbol 458 Graphic | Used by:462 | |
Symbol 459 EditableText | Uses:457 | Used by:462 |
Symbol 460 Text | Uses:322 284 290 289 309 | Used by:462 |
Symbol 461 Text | Uses:289 | Used by:462 |
Symbol 462 MovieClip {Page18} | Uses:221 455 456 458 459 460 461 | |
Symbol 463 Font | Used by:465 | |
Symbol 464 Graphic | Used by:471 | |
Symbol 465 EditableText | Uses:463 | Used by:471 |
Symbol 466 Font | Used by:468 | |
Symbol 467 Graphic | Used by:471 | |
Symbol 468 EditableText | Uses:466 | Used by:471 |
Symbol 469 Text | Uses:289 290 284 | Used by:471 |
Symbol 470 Text | Uses:289 | Used by:471 |
Symbol 471 MovieClip {Page19} | Uses:221 464 465 467 468 469 470 | |
Symbol 472 Font | Used by:474 | |
Symbol 473 Graphic | Used by:480 | |
Symbol 474 EditableText | Uses:472 | Used by:480 |
Symbol 475 Font | Used by:477 | |
Symbol 476 Graphic | Used by:480 | |
Symbol 477 EditableText | Uses:475 | Used by:480 |
Symbol 478 Text | Uses:289 284 309 | Used by:480 |
Symbol 479 Text | Uses:289 284 309 | Used by:480 |
Symbol 480 MovieClip {Page20} | Uses:221 473 474 476 477 478 479 | |
Symbol 481 Font | Used by:483 | |
Symbol 482 Graphic | Used by:489 | |
Symbol 483 EditableText | Uses:481 | Used by:489 |
Symbol 484 Font | Used by:486 | |
Symbol 485 Graphic | Used by:489 | |
Symbol 486 EditableText | Uses:484 | Used by:489 |
Symbol 487 Text | Uses:289 284 290 309 | Used by:489 |
Symbol 488 Text | Uses:289 290 284 | Used by:489 |
Symbol 489 MovieClip {Page21} | Uses:221 482 483 485 486 487 488 | |
Symbol 490 Font | Used by:492 | |
Symbol 491 Graphic | Used by:498 | |
Symbol 492 EditableText | Uses:490 | Used by:498 |
Symbol 493 Font | Used by:495 | |
Symbol 494 Graphic | Used by:498 | |
Symbol 495 EditableText | Uses:493 | Used by:498 |
Symbol 496 Text | Uses:289 284 290 | Used by:498 |
Symbol 497 Text | Uses:289 284 309 452 | Used by:498 |
Symbol 498 MovieClip {Page22} | Uses:221 491 492 494 495 496 497 | |
Symbol 499 Font | Used by:501 | |
Symbol 500 Graphic | Used by:507 | |
Symbol 501 EditableText | Uses:499 | Used by:507 |
Symbol 502 Font | Used by:504 | |
Symbol 503 Graphic | Used by:507 | |
Symbol 504 EditableText | Uses:502 | Used by:507 |
Symbol 505 Text | Uses:289 290 284 309 | Used by:507 |
Symbol 506 Text | Uses:309 284 452 | Used by:507 |
Symbol 507 MovieClip {Page23} | Uses:221 500 501 503 504 505 506 | |
Symbol 508 Font | Used by:510 | |
Symbol 509 Graphic | Used by:516 | |
Symbol 510 EditableText | Uses:508 | Used by:516 |
Symbol 511 Font | Used by:513 | |
Symbol 512 Graphic | Used by:516 | |
Symbol 513 EditableText | Uses:511 | Used by:516 |
Symbol 514 Text | Uses:289 290 284 515 | Used by:516 |
Symbol 515 Font | Used by:514 587 626 634 673 682 692 695 716 725 734 743 837 884 912 934 944 946 954 1063 1073 1082 1110 1139 1149 1176 1185 1999 2105 | |
Symbol 516 MovieClip {Page24} | Uses:221 509 510 512 513 514 | |
Symbol 517 Font | Used by:519 | |
Symbol 518 Graphic | Used by:525 | |
Symbol 519 EditableText | Uses:517 | Used by:525 |
Symbol 520 Font | Used by:522 | |
Symbol 521 Graphic | Used by:525 | |
Symbol 522 EditableText | Uses:520 | Used by:525 |
Symbol 523 Text | Uses:322 284 290 289 387 309 452 | Used by:525 |
Symbol 524 Text | Uses:289 284 309 | Used by:525 |
Symbol 525 MovieClip {Page25} | Uses:221 518 519 521 522 523 524 | |
Symbol 526 Font | Used by:528 | |
Symbol 527 Graphic | Used by:534 | |
Symbol 528 EditableText | Uses:526 | Used by:534 |
Symbol 529 Font | Used by:531 | |
Symbol 530 Graphic | Used by:534 | |
Symbol 531 EditableText | Uses:529 | Used by:534 |
Symbol 532 Text | Uses:289 284 290 309 | Used by:534 |
Symbol 533 Text | Uses:309 284 | Used by:534 |
Symbol 534 MovieClip {Page26} | Uses:221 527 528 530 531 532 533 | |
Symbol 535 Font | Used by:537 | |
Symbol 536 Graphic | Used by:543 | |
Symbol 537 EditableText | Uses:535 | Used by:543 |
Symbol 538 Font | Used by:540 | |
Symbol 539 Graphic | Used by:543 | |
Symbol 540 EditableText | Uses:538 | Used by:543 |
Symbol 541 Text | Uses:289 284 290 | Used by:543 |
Symbol 542 Text | Uses:289 284 309 | Used by:543 |
Symbol 543 MovieClip {Page27} | Uses:221 536 537 539 540 541 542 | |
Symbol 544 Font | Used by:546 | |
Symbol 545 Graphic | Used by:552 | |
Symbol 546 EditableText | Uses:544 | Used by:552 |
Symbol 547 Font | Used by:549 | |
Symbol 548 Graphic | Used by:552 | |
Symbol 549 EditableText | Uses:547 | Used by:552 |
Symbol 550 Text | Uses:289 290 284 309 452 | Used by:552 |
Symbol 551 Text | Uses:309 452 284 289 | Used by:552 |
Symbol 552 MovieClip {Page28} | Uses:221 545 546 548 549 550 551 | |
Symbol 553 Font | Used by:555 | |
Symbol 554 Graphic | Used by:561 | |
Symbol 555 EditableText | Uses:553 | Used by:561 |
Symbol 556 Font | Used by:558 | |
Symbol 557 Graphic | Used by:561 | |
Symbol 558 EditableText | Uses:556 | Used by:561 |
Symbol 559 Text | Uses:289 290 284 | Used by:561 |
Symbol 560 Text | Uses:289 284 309 452 | Used by:561 |
Symbol 561 MovieClip {Page29} | Uses:221 554 555 557 558 559 560 | |
Symbol 562 Font | Used by:564 | |
Symbol 563 Graphic | Used by:570 | |
Symbol 564 EditableText | Uses:562 | Used by:570 |
Symbol 565 Font | Used by:567 | |
Symbol 566 Graphic | Used by:570 | |
Symbol 567 EditableText | Uses:565 | Used by:570 |
Symbol 568 Text | Uses:289 284 290 309 452 | Used by:570 |
Symbol 569 Text | Uses:289 | Used by:570 |
Symbol 570 MovieClip {Page30} | Uses:221 563 564 566 567 568 569 | |
Symbol 571 Font | Used by:573 | |
Symbol 572 Graphic | Used by:580 | |
Symbol 573 EditableText | Uses:571 | Used by:580 |
Symbol 574 Bitmap | Used by:575 | |
Symbol 575 Graphic | Uses:574 | Used by:580 |
Symbol 576 Font | Used by:578 | |
Symbol 577 Graphic | Used by:580 | |
Symbol 578 EditableText | Uses:576 | Used by:580 |
Symbol 579 Text | Uses:322 284 289 290 309 452 | Used by:580 |
Symbol 580 MovieClip {Page31} | Uses:221 572 573 575 577 578 579 | |
Symbol 581 Font | Used by:583 | |
Symbol 582 Graphic | Used by:589 | |
Symbol 583 EditableText | Uses:581 | Used by:589 |
Symbol 584 Font | Used by:586 | |
Symbol 585 Graphic | Used by:589 | |
Symbol 586 EditableText | Uses:584 | Used by:589 |
Symbol 587 Text | Uses:322 284 289 515 588 | Used by:589 |
Symbol 588 Font | Used by:587 | |
Symbol 589 MovieClip {Page32} | Uses:221 582 583 585 586 587 | |
Symbol 590 Font | Used by:592 | |
Symbol 591 Graphic | Used by:598 | |
Symbol 592 EditableText | Uses:590 | Used by:598 |
Symbol 593 Font | Used by:595 | |
Symbol 594 Graphic | Used by:598 | |
Symbol 595 EditableText | Uses:593 | Used by:598 |
Symbol 596 Text | Uses:322 284 597 289 330 309 329 | Used by:598 |
Symbol 597 Font | Used by:596 | |
Symbol 598 MovieClip {Page33} | Uses:221 591 592 594 595 596 | |
Symbol 599 Font | Used by:601 | |
Symbol 600 Graphic | Used by:607 | |
Symbol 601 EditableText | Uses:599 | Used by:607 |
Symbol 602 Font | Used by:604 | |
Symbol 603 Graphic | Used by:607 | |
Symbol 604 EditableText | Uses:602 | Used by:607 |
Symbol 605 Text | Uses:322 284 606 289 290 | Used by:607 |
Symbol 606 Font | Used by:605 651 662 902 1063 2042 | |
Symbol 607 MovieClip {Page34} | Uses:221 600 601 603 604 605 | |
Symbol 608 Font | Used by:610 | |
Symbol 609 Graphic | Used by:618 | |
Symbol 610 EditableText | Uses:608 | Used by:618 |
Symbol 611 Font | Used by:613 | |
Symbol 612 Graphic | Used by:618 | |
Symbol 613 EditableText | Uses:611 | Used by:618 |
Symbol 614 Text | Uses:322 284 615 289 330 309 329 616 | Used by:618 |
Symbol 615 Font | Used by:614 625 634 771 773 781 1158 1176 1185 1983 1991 2007 2016 2025 2026 2034 2324 2334 2352 2369 2396 2414 2422 2423 2431 2440 2441 2457 2485 2486 2495 2503 2565 2620 2646 2655 2673 2681 2699 2778 2796 2823 2832 2867 2894 2921 2940 2980 2989 3001 3040 3093 3143 3154 3155 3163 3180 3198 3199 3208 3219 3261 3262 3270 | |
Symbol 616 Font | Used by:614 692 705 754 946 1194 1196 2105 2601 2602 3145 | |
Symbol 617 Text | Uses:289 330 | Used by:618 |
Symbol 618 MovieClip {Page35} | Uses:221 609 610 612 613 614 617 | |
Symbol 619 Font | Used by:621 | |
Symbol 620 Graphic | Used by:627 | |
Symbol 621 EditableText | Uses:619 | Used by:627 |
Symbol 622 Font | Used by:624 | |
Symbol 623 Graphic | Used by:627 | |
Symbol 624 EditableText | Uses:622 | Used by:627 |
Symbol 625 Text | Uses:289 330 309 329 284 615 | Used by:627 |
Symbol 626 Text | Uses:289 330 515 | Used by:627 |
Symbol 627 MovieClip {Page36} | Uses:221 620 621 623 624 625 626 | |
Symbol 628 Font | Used by:630 | |
Symbol 629 Graphic | Used by:636 | |
Symbol 630 EditableText | Uses:628 | Used by:636 |
Symbol 631 Font | Used by:633 | |
Symbol 632 Graphic | Used by:636 | |
Symbol 633 EditableText | Uses:631 | Used by:636 |
Symbol 634 Text | Uses:289 330 515 290 284 615 309 329 | Used by:636 |
Symbol 635 Text | Uses:289 330 | Used by:636 |
Symbol 636 MovieClip {Page37} | Uses:221 629 630 632 633 634 635 | |
Symbol 637 Font | Used by:639 | |
Symbol 638 Graphic | Used by:644 | |
Symbol 639 EditableText | Uses:637 | Used by:644 |
Symbol 640 Font | Used by:642 | |
Symbol 641 Graphic | Used by:644 | |
Symbol 642 EditableText | Uses:640 | Used by:644 |
Symbol 643 Text | Uses:289 284 330 | Used by:644 |
Symbol 644 MovieClip {Page38} | Uses:221 638 639 641 642 643 | |
Symbol 645 Font | Used by:647 | |
Symbol 646 Graphic | Used by:653 | |
Symbol 647 EditableText | Uses:645 | Used by:653 |
Symbol 648 Font | Used by:650 | |
Symbol 649 Graphic | Used by:653 | |
Symbol 650 EditableText | Uses:648 | Used by:653 |
Symbol 651 Text | Uses:322 284 606 289 387 652 | Used by:653 |
Symbol 652 Font | Used by:651 705 754 763 1023 2105 2602 | |
Symbol 653 MovieClip {Page39} | Uses:221 646 647 649 650 651 | |
Symbol 654 Font | Used by:656 | |
Symbol 655 Graphic | Used by:666 | |
Symbol 656 EditableText | Uses:654 | Used by:666 |
Symbol 657 Bitmap | Used by:658 | |
Symbol 658 Graphic | Uses:657 | Used by:666 |
Symbol 659 Font | Used by:661 | |
Symbol 660 Graphic | Used by:666 | |
Symbol 661 EditableText | Uses:659 | Used by:666 |
Symbol 662 Text | Uses:322 284 606 663 664 289 290 309 452 | Used by:666 |
Symbol 663 Font | Used by:662 | |
Symbol 664 Font | Used by:662 809 818 865 902 944 978 1005 1073 1101 1158 2076 2085 | |
Symbol 665 Text | Uses:309 284 | Used by:666 |
Symbol 666 MovieClip {Page40} | Uses:221 655 656 658 660 661 662 665 | |
Symbol 667 Font | Used by:669 | |
Symbol 668 Graphic | Used by:675 | |
Symbol 669 EditableText | Uses:667 | Used by:675 |
Symbol 670 Font | Used by:672 | |
Symbol 671 Graphic | Used by:675 | |
Symbol 672 EditableText | Uses:670 | Used by:675 |
Symbol 673 Text | Uses:289 284 515 290 | Used by:675 |
Symbol 674 Text | Uses:289 | Used by:675 |
Symbol 675 MovieClip {Page41} | Uses:221 668 669 671 672 673 674 | |
Symbol 676 Font | Used by:678 | |
Symbol 677 Graphic | Used by:683 | |
Symbol 678 EditableText | Uses:676 | Used by:683 |
Symbol 679 Font | Used by:681 | |
Symbol 680 Graphic | Used by:683 | |
Symbol 681 EditableText | Uses:679 | Used by:683 |
Symbol 682 Text | Uses:289 290 284 515 | Used by:683 |
Symbol 683 MovieClip {Page42} | Uses:221 677 678 680 681 682 | |
Symbol 684 Font | Used by:686 | |
Symbol 685 Graphic | Used by:696 | |
Symbol 686 EditableText | Uses:684 | Used by:696 |
Symbol 687 Bitmap | Used by:688 | |
Symbol 688 Graphic | Uses:687 | Used by:696 |
Symbol 689 Font | Used by:691 | |
Symbol 690 Graphic | Used by:696 | |
Symbol 691 EditableText | Uses:689 | Used by:696 |
Symbol 692 Text | Uses:322 284 693 616 694 289 515 290 309 | Used by:696 |
Symbol 693 Font | Used by:692 978 | |
Symbol 694 Font | Used by:692 | |
Symbol 695 Text | Uses:515 289 | Used by:696 |
Symbol 696 MovieClip {Page43} | Uses:221 685 686 688 690 691 692 695 | |
Symbol 697 Font | Used by:699 | |
Symbol 698 Graphic | Used by:709 | |
Symbol 699 EditableText | Uses:697 | Used by:709 |
Symbol 700 Bitmap | Used by:701 | |
Symbol 701 Graphic | Uses:700 | Used by:709 |
Symbol 702 Font | Used by:704 | |
Symbol 703 Graphic | Used by:709 | |
Symbol 704 EditableText | Uses:702 | Used by:709 |
Symbol 705 Text | Uses:322 284 706 707 616 652 289 290 | Used by:709 |
Symbol 706 Font | Used by:705 754 809 902 2085 | |
Symbol 707 Font | Used by:705 754 2105 | |
Symbol 708 Text | Uses:289 284 309 | Used by:709 |
Symbol 709 MovieClip {Page44} | Uses:221 698 699 701 703 704 705 708 | |
Symbol 710 Font | Used by:712 | |
Symbol 711 Graphic | Used by:718 | |
Symbol 712 EditableText | Uses:710 | Used by:718 |
Symbol 713 Font | Used by:715 | |
Symbol 714 Graphic | Used by:718 | |
Symbol 715 EditableText | Uses:713 | Used by:718 |
Symbol 716 Text | Uses:289 284 515 290 | Used by:718 |
Symbol 717 Text | Uses:309 284 289 | Used by:718 |
Symbol 718 MovieClip {Page45} | Uses:221 711 712 714 715 716 717 | |
Symbol 719 Font | Used by:721 | |
Symbol 720 Graphic | Used by:727 | |
Symbol 721 EditableText | Uses:719 | Used by:727 |
Symbol 722 Font | Used by:724 | |
Symbol 723 Graphic | Used by:727 | |
Symbol 724 EditableText | Uses:722 | Used by:727 |
Symbol 725 Text | Uses:289 284 290 515 | Used by:727 |
Symbol 726 Text | Uses:289 284 | Used by:727 |
Symbol 727 MovieClip {Page46} | Uses:221 720 721 723 724 725 726 | |
Symbol 728 Font | Used by:730 | |
Symbol 729 Graphic | Used by:736 | |
Symbol 730 EditableText | Uses:728 | Used by:736 |
Symbol 731 Font | Used by:733 | |
Symbol 732 Graphic | Used by:736 | |
Symbol 733 EditableText | Uses:731 | Used by:736 |
Symbol 734 Text | Uses:289 284 515 290 | Used by:736 |
Symbol 735 Text | Uses:289 290 284 | Used by:736 |
Symbol 736 MovieClip {Page47} | Uses:221 729 730 732 733 734 735 | |
Symbol 737 Font | Used by:739 | |
Symbol 738 Graphic | Used by:745 | |
Symbol 739 EditableText | Uses:737 | Used by:745 |
Symbol 740 Font | Used by:742 | |
Symbol 741 Graphic | Used by:745 | |
Symbol 742 EditableText | Uses:740 | Used by:745 |
Symbol 743 Text | Uses:289 284 515 290 | Used by:745 |
Symbol 744 Text | Uses:289 | Used by:745 |
Symbol 745 MovieClip {Page48} | Uses:221 738 739 741 742 743 744 | |
Symbol 746 Font | Used by:748 | |
Symbol 747 Graphic | Used by:756 | |
Symbol 748 EditableText | Uses:746 | Used by:756 |
Symbol 749 Bitmap | Used by:750 1019 | |
Symbol 750 Graphic | Uses:749 | Used by:756 |
Symbol 751 Font | Used by:753 | |
Symbol 752 Graphic | Used by:756 | |
Symbol 753 EditableText | Uses:751 | Used by:756 |
Symbol 754 Text | Uses:322 284 706 707 616 652 289 290 | Used by:756 |
Symbol 755 Text | Uses:289 | Used by:756 |
Symbol 756 MovieClip {Page49} | Uses:221 747 748 750 752 753 754 755 | |
Symbol 757 Font | Used by:759 | |
Symbol 758 Graphic | Used by:764 | |
Symbol 759 EditableText | Uses:757 | Used by:764 |
Symbol 760 Font | Used by:762 | |
Symbol 761 Graphic | Used by:764 | |
Symbol 762 EditableText | Uses:760 | Used by:764 |
Symbol 763 Text | Uses:289 290 284 322 652 | Used by:764 |
Symbol 764 MovieClip {Page50} | Uses:221 758 759 761 762 763 | |
Symbol 765 Font | Used by:767 | |
Symbol 766 Graphic | Used by:774 | |
Symbol 767 EditableText | Uses:765 | Used by:774 |
Symbol 768 Font | Used by:770 | |
Symbol 769 Graphic | Used by:774 | |
Symbol 770 EditableText | Uses:768 | Used by:774 |
Symbol 771 Text | Uses:322 284 615 289 290 772 309 | Used by:774 |
Symbol 772 Font | Used by:771 2486 2512 2531 3261 | |
Symbol 773 Text | Uses:289 615 | Used by:774 |
Symbol 774 MovieClip {Page51} | Uses:221 766 767 769 770 771 773 | |
Symbol 775 Font | Used by:777 | |
Symbol 776 Graphic | Used by:783 | |
Symbol 777 EditableText | Uses:775 | Used by:783 |
Symbol 778 Font | Used by:780 | |
Symbol 779 Graphic | Used by:783 | |
Symbol 780 EditableText | Uses:778 | Used by:783 |
Symbol 781 Text | Uses:615 289 290 | Used by:783 |
Symbol 782 Text | Uses:284 289 309 | Used by:783 |
Symbol 783 MovieClip {Page52} | Uses:221 776 777 779 780 781 782 | |
Symbol 784 Font | Used by:786 | |
Symbol 785 Graphic | Used by:792 | |
Symbol 786 EditableText | Uses:784 | Used by:792 |
Symbol 787 Font | Used by:789 | |
Symbol 788 Graphic | Used by:792 | |
Symbol 789 EditableText | Uses:787 | Used by:792 |
Symbol 790 Text | Uses:289 284 290 | Used by:792 |
Symbol 791 Text | Uses:289 290 284 309 | Used by:792 |
Symbol 792 MovieClip {Page53} | Uses:221 785 786 788 789 790 791 | |
Symbol 793 Font | Used by:795 | |
Symbol 794 Graphic | Used by:800 | |
Symbol 795 EditableText | Uses:793 | Used by:800 |
Symbol 796 Font | Used by:798 | |
Symbol 797 Graphic | Used by:800 | |
Symbol 798 EditableText | Uses:796 | Used by:800 |
Symbol 799 Text | Uses:289 284 290 | Used by:800 |
Symbol 800 MovieClip {Page54} | Uses:221 794 795 797 798 799 | |
Symbol 801 Font | Used by:803 | |
Symbol 802 Graphic | Used by:810 | |
Symbol 803 EditableText | Uses:801 | Used by:810 |
Symbol 804 Bitmap | Used by:805 814 861 898 974 2081 | |
Symbol 805 Graphic | Uses:804 | Used by:810 |
Symbol 806 Font | Used by:808 | |
Symbol 807 Graphic | Used by:810 | |
Symbol 808 EditableText | Uses:806 | Used by:810 |
Symbol 809 Text | Uses:322 284 706 664 289 309 290 | Used by:810 |
Symbol 810 MovieClip {Page55} | Uses:221 802 803 805 807 808 809 | |
Symbol 811 Font | Used by:813 | |
Symbol 812 Graphic | Used by:821 | |
Symbol 813 EditableText | Uses:811 | Used by:821 |
Symbol 814 Graphic | Uses:804 | Used by:821 |
Symbol 815 Font | Used by:817 | |
Symbol 816 Graphic | Used by:821 | |
Symbol 817 EditableText | Uses:815 | Used by:821 |
Symbol 818 Text | Uses:322 284 819 664 289 290 | Used by:821 |
Symbol 819 Font | Used by:818 1101 2076 | |
Symbol 820 Text | Uses:289 284 | Used by:821 |
Symbol 821 MovieClip {Page56} | Uses:221 812 813 814 816 817 818 820 | |
Symbol 822 Font | Used by:824 | |
Symbol 823 Graphic | Used by:830 | |
Symbol 824 EditableText | Uses:822 | Used by:830 |
Symbol 825 Font | Used by:827 | |
Symbol 826 Graphic | Used by:830 | |
Symbol 827 EditableText | Uses:825 | Used by:830 |
Symbol 828 Text | Uses:289 284 290 309 452 | Used by:830 |
Symbol 829 Text | Uses:289 284 309 452 | Used by:830 |
Symbol 830 MovieClip {Page57} | Uses:221 823 824 826 827 828 829 | |
Symbol 831 Font | Used by:833 | |
Symbol 832 Graphic | Used by:839 | |
Symbol 833 EditableText | Uses:831 | Used by:839 |
Symbol 834 Font | Used by:836 | |
Symbol 835 Graphic | Used by:839 | |
Symbol 836 EditableText | Uses:834 | Used by:839 |
Symbol 837 Text | Uses:289 515 284 290 309 452 | Used by:839 |
Symbol 838 Text | Uses:289 284 309 452 | Used by:839 |
Symbol 839 MovieClip {Page58} | Uses:221 832 833 835 836 837 838 | |
Symbol 840 Font | Used by:842 | |
Symbol 841 Graphic | Used by:848 | |
Symbol 842 EditableText | Uses:840 | Used by:848 |
Symbol 843 Font | Used by:845 | |
Symbol 844 Graphic | Used by:848 | |
Symbol 845 EditableText | Uses:843 | Used by:848 |
Symbol 846 Text | Uses:289 290 284 | Used by:848 |
Symbol 847 Text | Uses:289 284 309 452 | Used by:848 |
Symbol 848 MovieClip {Page59} | Uses:221 841 842 844 845 846 847 | |
Symbol 849 Font | Used by:851 | |
Symbol 850 Graphic | Used by:857 | |
Symbol 851 EditableText | Uses:849 | Used by:857 |
Symbol 852 Font | Used by:854 | |
Symbol 853 Graphic | Used by:857 | |
Symbol 854 EditableText | Uses:852 | Used by:857 |
Symbol 855 Text | Uses:289 290 284 | Used by:857 |
Symbol 856 Text | Uses:289 | Used by:857 |
Symbol 857 MovieClip {Page60} | Uses:221 850 851 853 854 855 856 | |
Symbol 858 Font | Used by:860 | |
Symbol 859 Graphic | Used by:868 | |
Symbol 860 EditableText | Uses:858 | Used by:868 |
Symbol 861 Graphic | Uses:804 | Used by:868 |
Symbol 862 Font | Used by:864 | |
Symbol 863 Graphic | Used by:868 | |
Symbol 864 EditableText | Uses:862 | Used by:868 |
Symbol 865 Text | Uses:322 284 866 664 289 290 | Used by:868 |
Symbol 866 Font | Used by:865 | |
Symbol 867 Text | Uses:289 284 | Used by:868 |
Symbol 868 MovieClip {Page61} | Uses:221 859 860 861 863 864 865 867 | |
Symbol 869 Font | Used by:871 | |
Symbol 870 Graphic | Used by:877 | |
Symbol 871 EditableText | Uses:869 | Used by:877 |
Symbol 872 Font | Used by:874 | |
Symbol 873 Graphic | Used by:877 | |
Symbol 874 EditableText | Uses:872 | Used by:877 |
Symbol 875 Text | Uses:289 290 284 | Used by:877 |
Symbol 876 Text | Uses:289 290 284 | Used by:877 |
Symbol 877 MovieClip {Page62} | Uses:221 870 871 873 874 875 876 | |
Symbol 878 Font | Used by:880 | |
Symbol 879 Graphic | Used by:886 | |
Symbol 880 EditableText | Uses:878 | Used by:886 |
Symbol 881 Font | Used by:883 | |
Symbol 882 Graphic | Used by:886 | |
Symbol 883 EditableText | Uses:881 | Used by:886 |
Symbol 884 Text | Uses:289 284 290 515 | Used by:886 |
Symbol 885 Text | Uses:289 284 | Used by:886 |
Symbol 886 MovieClip {Page63} | Uses:221 879 880 882 883 884 885 | |
Symbol 887 Font | Used by:889 | |
Symbol 888 Graphic | Used by:894 | |
Symbol 889 EditableText | Uses:887 | Used by:894 |
Symbol 890 Font | Used by:892 | |
Symbol 891 Graphic | Used by:894 | |
Symbol 892 EditableText | Uses:890 | Used by:894 |
Symbol 893 Text | Uses:289 284 290 | Used by:894 |
Symbol 894 MovieClip {Page64} | Uses:221 888 889 891 892 893 | |
Symbol 895 Font | Used by:897 | |
Symbol 896 Graphic | Used by:905 | |
Symbol 897 EditableText | Uses:895 | Used by:905 |
Symbol 898 Graphic | Uses:804 | Used by:905 |
Symbol 899 Font | Used by:901 | |
Symbol 900 Graphic | Used by:905 | |
Symbol 901 EditableText | Uses:899 | Used by:905 |
Symbol 902 Text | Uses:322 606 284 903 706 664 289 309 452 290 | Used by:905 |
Symbol 903 Font | Used by:902 1119 1194 2601 2724 2858 3143 3145 3413 3417 | |
Symbol 904 Text | Uses:289 290 284 | Used by:905 |
Symbol 905 MovieClip {Page65} | Uses:221 896 897 898 900 901 902 904 | |
Symbol 906 Font | Used by:908 | |
Symbol 907 Graphic | Used by:918 | |
Symbol 908 EditableText | Uses:906 | Used by:918 |
Symbol 909 Font | Used by:911 | |
Symbol 910 Graphic | Used by:918 | |
Symbol 911 EditableText | Uses:909 | Used by:918 |
Symbol 912 Text | Uses:289 290 913 914 515 | Used by:918 |
Symbol 913 Font | Used by:912 917 | |
Symbol 914 Font | Used by:912 | |
Symbol 915 Text | Uses:289 | Used by:918 |
Symbol 916 Graphic | Used by:918 | |
Symbol 917 Text | Uses:913 | Used by:918 |
Symbol 918 MovieClip {Page66} | Uses:221 907 908 910 911 912 915 916 917 | |
Symbol 919 Font | Used by:921 | |
Symbol 920 Graphic | Used by:927 | |
Symbol 921 EditableText | Uses:919 | Used by:927 |
Symbol 922 Font | Used by:924 | |
Symbol 923 Graphic | Used by:927 | |
Symbol 924 EditableText | Uses:922 | Used by:927 |
Symbol 925 Text | Uses:289 290 284 | Used by:927 |
Symbol 926 Text | Uses:289 290 284 | Used by:927 |
Symbol 927 MovieClip {Page67} | Uses:221 920 921 923 924 925 926 | |
Symbol 928 Font | Used by:930 | |
Symbol 929 Graphic | Used by:935 | |
Symbol 930 EditableText | Uses:928 | Used by:935 |
Symbol 931 Font | Used by:933 | |
Symbol 932 Graphic | Used by:935 | |
Symbol 933 EditableText | Uses:931 | Used by:935 |
Symbol 934 Text | Uses:289 284 515 290 | Used by:935 |
Symbol 935 MovieClip {Page68} | Uses:221 929 930 932 933 934 | |
Symbol 936 Font | Used by:938 | |
Symbol 937 Graphic | Used by:947 | |
Symbol 938 EditableText | Uses:936 | Used by:947 |
Symbol 939 Bitmap | Used by:940 1001 | |
Symbol 940 Graphic | Uses:939 | Used by:947 |
Symbol 941 Font | Used by:943 | |
Symbol 942 Graphic | Used by:947 | |
Symbol 943 EditableText | Uses:941 | Used by:947 |
Symbol 944 Text | Uses:322 284 945 664 289 290 515 309 452 | Used by:947 |
Symbol 945 Font | Used by:944 1005 1073 1158 | |
Symbol 946 Text | Uses:309 616 284 515 289 | Used by:947 |
Symbol 947 MovieClip {Page69} | Uses:221 937 938 940 942 943 944 946 | |
Symbol 948 Font | Used by:950 | |
Symbol 949 Graphic | Used by:956 | |
Symbol 950 EditableText | Uses:948 | Used by:956 |
Symbol 951 Font | Used by:953 | |
Symbol 952 Graphic | Used by:956 | |
Symbol 953 EditableText | Uses:951 | Used by:956 |
Symbol 954 Text | Uses:309 452 284 289 515 290 | Used by:956 |
Symbol 955 Text | Uses:289 284 309 452 | Used by:956 |
Symbol 956 MovieClip {Page70} | Uses:221 949 950 952 953 954 955 | |
Symbol 957 Font | Used by:959 | |
Symbol 958 Graphic | Used by:970 | |
Symbol 959 EditableText | Uses:957 | Used by:970 |
Symbol 960 Font | Used by:962 | |
Symbol 961 Graphic | Used by:970 | |
Symbol 962 EditableText | Uses:960 | Used by:970 |
Symbol 963 Text | Uses:289 964 290 965 966 967 | Used by:970 |
Symbol 964 Font | Used by:963 969 2269 | |
Symbol 965 Font | Used by:963 | |
Symbol 966 Font | Used by:963 | |
Symbol 967 Font | Used by:963 | |
Symbol 968 Graphic | Used by:970 | |
Symbol 969 Text | Uses:964 | Used by:970 |
Symbol 970 MovieClip {Page71} | Uses:221 958 959 961 962 963 968 969 | |
Symbol 971 Font | Used by:973 | |
Symbol 972 Graphic | Used by:980 | |
Symbol 973 EditableText | Uses:971 | Used by:980 |
Symbol 974 Graphic | Uses:804 | Used by:980 |
Symbol 975 Font | Used by:977 | |
Symbol 976 Graphic | Used by:980 | |
Symbol 977 EditableText | Uses:975 | Used by:980 |
Symbol 978 Text | Uses:322 284 693 664 289 290 | Used by:980 |
Symbol 979 Text | Uses:289 284 309 | Used by:980 |
Symbol 980 MovieClip {Page72} | Uses:221 972 973 974 976 977 978 979 | |
Symbol 981 Font | Used by:983 | |
Symbol 982 Graphic | Used by:989 | |
Symbol 983 EditableText | Uses:981 | Used by:989 |
Symbol 984 Font | Used by:986 | |
Symbol 985 Graphic | Used by:989 | |
Symbol 986 EditableText | Uses:984 | Used by:989 |
Symbol 987 Text | Uses:289 284 290 309 452 | Used by:989 |
Symbol 988 Text | Uses:309 284 289 | Used by:989 |
Symbol 989 MovieClip {Page73} | Uses:221 982 983 985 986 987 988 | |
Symbol 990 Font | Used by:992 | |
Symbol 991 Graphic | Used by:997 | |
Symbol 992 EditableText | Uses:990 | Used by:997 |
Symbol 993 Font | Used by:995 | |
Symbol 994 Graphic | Used by:997 | |
Symbol 995 EditableText | Uses:993 | Used by:997 |
Symbol 996 Text | Uses:289 284 | Used by:997 |
Symbol 997 MovieClip {Page74} | Uses:221 991 992 994 995 996 | |
Symbol 998 Font | Used by:1000 | |
Symbol 999 Graphic | Used by:1007 | |
Symbol 1000 EditableText | Uses:998 | Used by:1007 |
Symbol 1001 Graphic | Uses:939 | Used by:1007 |
Symbol 1002 Font | Used by:1004 | |
Symbol 1003 Graphic | Used by:1007 | |
Symbol 1004 EditableText | Uses:1002 | Used by:1007 |
Symbol 1005 Text | Uses:322 284 945 664 289 | Used by:1007 |
Symbol 1006 Text | Uses:289 284 | Used by:1007 |
Symbol 1007 MovieClip {Page75} | Uses:221 999 1000 1001 1003 1004 1005 1006 | |
Symbol 1008 Font | Used by:1010 | |
Symbol 1009 Graphic | Used by:1015 | |
Symbol 1010 EditableText | Uses:1008 | Used by:1015 |
Symbol 1011 Font | Used by:1013 | |
Symbol 1012 Graphic | Used by:1015 | |
Symbol 1013 EditableText | Uses:1011 | Used by:1015 |
Symbol 1014 Text | Uses:309 284 289 | Used by:1015 |
Symbol 1015 MovieClip {Page76} | Uses:221 1009 1010 1012 1013 1014 | |
Symbol 1016 Font | Used by:1018 | |
Symbol 1017 Graphic | Used by:1026 | |
Symbol 1018 EditableText | Uses:1016 | Used by:1026 |
Symbol 1019 Graphic | Uses:749 | Used by:1026 |
Symbol 1020 Font | Used by:1022 | |
Symbol 1021 Graphic | Used by:1026 | |
Symbol 1022 EditableText | Uses:1020 | Used by:1026 |
Symbol 1023 Text | Uses:322 284 652 1024 289 309 | Used by:1026 |
Symbol 1024 Font | Used by:1023 | |
Symbol 1025 Text | Uses:289 290 | Used by:1026 |
Symbol 1026 MovieClip {Page77} | Uses:221 1017 1018 1019 1021 1022 1023 1025 | |
Symbol 1027 Font | Used by:1029 | |
Symbol 1028 Graphic | Used by:1035 | |
Symbol 1029 EditableText | Uses:1027 | Used by:1035 |
Symbol 1030 Font | Used by:1032 | |
Symbol 1031 Graphic | Used by:1035 | |
Symbol 1032 EditableText | Uses:1030 | Used by:1035 |
Symbol 1033 Text | Uses:289 290 284 | Used by:1035 |
Symbol 1034 Text | Uses:289 284 309 452 | Used by:1035 |
Symbol 1035 MovieClip {Page78} | Uses:221 1028 1029 1031 1032 1033 1034 | |
Symbol 1036 Font | Used by:1038 | |
Symbol 1037 Graphic | Used by:1048 | |
Symbol 1038 EditableText | Uses:1036 | Used by:1048 |
Symbol 1039 Graphic | Used by:1048 | |
Symbol 1040 Font | Used by:1042 | |
Symbol 1041 Graphic | Used by:1048 | |
Symbol 1042 EditableText | Uses:1040 | Used by:1048 |
Symbol 1043 Text | Uses:289 284 309 1044 290 452 | Used by:1048 |
Symbol 1044 Font | Used by:1043 | |
Symbol 1045 Text | Uses:309 452 284 1046 1047 | Used by:1048 |
Symbol 1046 Font | Used by:1045 | |
Symbol 1047 Font | Used by:1045 2579 | |
Symbol 1048 MovieClip {Page79} | Uses:221 1037 1038 1039 1041 1042 1043 1045 | |
Symbol 1049 Font | Used by:1051 | |
Symbol 1050 Graphic | Used by:1056 | |
Symbol 1051 EditableText | Uses:1049 | Used by:1056 |
Symbol 1052 Font | Used by:1054 | |
Symbol 1053 Graphic | Used by:1056 | |
Symbol 1054 EditableText | Uses:1052 | Used by:1056 |
Symbol 1055 Text | Uses:289 284 290 309 | Used by:1056 |
Symbol 1056 MovieClip {Page80} | Uses:221 1050 1051 1053 1054 1055 | |
Symbol 1057 Font | Used by:1059 | |
Symbol 1058 Graphic | Used by:1064 | |
Symbol 1059 EditableText | Uses:1057 | Used by:1064 |
Symbol 1060 Font | Used by:1062 | |
Symbol 1061 Graphic | Used by:1064 | |
Symbol 1062 EditableText | Uses:1060 | Used by:1064 |
Symbol 1063 Text | Uses:322 284 606 289 290 515 | Used by:1064 |
Symbol 1064 MovieClip {Page81} | Uses:221 1058 1059 1061 1062 1063 | |
Symbol 1065 Font | Used by:1067 | |
Symbol 1066 Graphic | Used by:1075 | |
Symbol 1067 EditableText | Uses:1065 | Used by:1075 |
Symbol 1068 Bitmap | Used by:1069 2101 | |
Symbol 1069 Graphic | Uses:1068 | Used by:1075 |
Symbol 1070 Font | Used by:1072 | |
Symbol 1071 Graphic | Used by:1075 | |
Symbol 1072 EditableText | Uses:1070 | Used by:1075 |
Symbol 1073 Text | Uses:322 284 289 945 664 290 515 | Used by:1075 |
Symbol 1074 Text | Uses:289 | Used by:1075 |
Symbol 1075 MovieClip {Page82} | Uses:221 1066 1067 1069 1071 1072 1073 1074 | |
Symbol 1076 Font | Used by:1078 | |
Symbol 1077 Graphic | Used by:1084 | |
Symbol 1078 EditableText | Uses:1076 | Used by:1084 |
Symbol 1079 Font | Used by:1081 | |
Symbol 1080 Graphic | Used by:1084 | |
Symbol 1081 EditableText | Uses:1079 | Used by:1084 |
Symbol 1082 Text | Uses:289 284 515 290 | Used by:1084 |
Symbol 1083 Text | Uses:289 284 | Used by:1084 |
Symbol 1084 MovieClip {Page83} | Uses:221 1077 1078 1080 1081 1082 1083 | |
Symbol 1085 Font | Used by:1087 | |
Symbol 1086 Graphic | Used by:1092 | |
Symbol 1087 EditableText | Uses:1085 | Used by:1092 |
Symbol 1088 Font | Used by:1090 | |
Symbol 1089 Graphic | Used by:1092 | |
Symbol 1090 EditableText | Uses:1088 | Used by:1092 |
Symbol 1091 Text | Uses:289 284 | Used by:1092 |
Symbol 1092 MovieClip {Page84} | Uses:221 1086 1087 1089 1090 1091 | |
Symbol 1093 Font | Used by:1095 | |
Symbol 1094 Graphic | Used by:1103 | |
Symbol 1095 EditableText | Uses:1093 | Used by:1103 |
Symbol 1096 Bitmap | Used by:1097 | |
Symbol 1097 Graphic | Uses:1096 | Used by:1103 |
Symbol 1098 Font | Used by:1100 | |
Symbol 1099 Graphic | Used by:1103 | |
Symbol 1100 EditableText | Uses:1098 | Used by:1103 |
Symbol 1101 Text | Uses:322 284 819 664 289 290 | Used by:1103 |
Symbol 1102 Text | Uses:289 284 | Used by:1103 |
Symbol 1103 MovieClip {Page85} | Uses:221 1094 1095 1097 1099 1100 1101 1102 | |
Symbol 1104 Font | Used by:1106 | |
Symbol 1105 Graphic | Used by:1112 | |
Symbol 1106 EditableText | Uses:1104 | Used by:1112 |
Symbol 1107 Font | Used by:1109 | |
Symbol 1108 Graphic | Used by:1112 | |
Symbol 1109 EditableText | Uses:1107 | Used by:1112 |
Symbol 1110 Text | Uses:309 284 289 290 515 | Used by:1112 |
Symbol 1111 Text | Uses:289 284 | Used by:1112 |
Symbol 1112 MovieClip {Page86} | Uses:221 1105 1106 1108 1109 1110 1111 | |
Symbol 1113 Font | Used by:1115 | |
Symbol 1114 Graphic | Used by:1122 | |
Symbol 1115 EditableText | Uses:1113 | Used by:1122 |
Symbol 1116 Font | Used by:1118 | |
Symbol 1117 Graphic | Used by:1122 | |
Symbol 1118 EditableText | Uses:1116 | Used by:1122 |
Symbol 1119 Text | Uses:903 284 289 290 1120 1121 | Used by:1122 |
Symbol 1120 Font | Used by:1119 | |
Symbol 1121 Font | Used by:1119 | |
Symbol 1122 MovieClip {Page87} | Uses:221 1114 1115 1117 1118 1119 | |
Symbol 1123 Font | Used by:1125 | |
Symbol 1124 Graphic | Used by:1142 | |
Symbol 1125 EditableText | Uses:1123 | Used by:1142 |
Symbol 1126 Bitmap | Used by:1127 1154 | |
Symbol 1127 Graphic | Uses:1126 | Used by:1142 |
Symbol 1128 Font | Used by:1130 | |
Symbol 1129 Graphic | Used by:1142 | |
Symbol 1130 EditableText | Uses:1128 | Used by:1142 |
Symbol 1131 Text | Uses:322 284 | Used by:1142 |
Symbol 1132 Font | Used by:1133 1141 | |
Symbol 1133 Text | Uses:1132 | Used by:1142 |
Symbol 1134 Font | Used by:1135 | |
Symbol 1135 Text | Uses:1134 289 355 | Used by:1142 |
Symbol 1136 Font | Used by:1137 1138 | |
Symbol 1137 Text | Uses:1136 | Used by:1142 |
Symbol 1138 Text | Uses:1136 | Used by:1142 |
Symbol 1139 Text | Uses:284 289 290 515 | Used by:1142 |
Symbol 1140 Graphic | Used by:1142 | |
Symbol 1141 Text | Uses:1132 | Used by:1142 |
Symbol 1142 MovieClip {Page88} | Uses:221 1124 1125 1127 1129 1130 1131 1133 1135 1137 1138 1139 1140 1141 | |
Symbol 1143 Font | Used by:1145 | |
Symbol 1144 Graphic | Used by:1150 | |
Symbol 1145 EditableText | Uses:1143 | Used by:1150 |
Symbol 1146 Font | Used by:1148 | |
Symbol 1147 Graphic | Used by:1150 | |
Symbol 1148 EditableText | Uses:1146 | Used by:1150 |
Symbol 1149 Text | Uses:289 515 | Used by:1150 |
Symbol 1150 MovieClip {Page89} | Uses:221 1144 1145 1147 1148 1149 | |
Symbol 1151 Font | Used by:1153 | |
Symbol 1152 Graphic | Used by:1160 | |
Symbol 1153 EditableText | Uses:1151 | Used by:1160 |
Symbol 1154 Graphic | Uses:1126 | Used by:1160 |
Symbol 1155 Font | Used by:1157 | |
Symbol 1156 Graphic | Used by:1160 | |
Symbol 1157 EditableText | Uses:1155 | Used by:1160 |
Symbol 1158 Text | Uses:322 284 615 945 664 309 289 | Used by:1160 |
Symbol 1159 Text | Uses:289 | Used by:1160 |
Symbol 1160 MovieClip {Page90} | Uses:221 1152 1153 1154 1156 1157 1158 1159 | |
Symbol 1161 Font | Used by:1163 | |
Symbol 1162 Graphic | Used by:1169 | |
Symbol 1163 EditableText | Uses:1161 | Used by:1169 |
Symbol 1164 Font | Used by:1166 | |
Symbol 1165 Graphic | Used by:1169 | |
Symbol 1166 EditableText | Uses:1164 | Used by:1169 |
Symbol 1167 Text | Uses:289 284 | Used by:1169 |
Symbol 1168 Text | Uses:289 284 309 | Used by:1169 |
Symbol 1169 MovieClip {Page91} | Uses:221 1162 1163 1165 1166 1167 1168 | |
Symbol 1170 Font | Used by:1172 | |
Symbol 1171 Graphic | Used by:1178 | |
Symbol 1172 EditableText | Uses:1170 | Used by:1178 |
Symbol 1173 Font | Used by:1175 | |
Symbol 1174 Graphic | Used by:1178 | |
Symbol 1175 EditableText | Uses:1173 | Used by:1178 |
Symbol 1176 Text | Uses:289 284 615 515 | Used by:1178 |
Symbol 1177 Text | Uses:289 284 309 | Used by:1178 |
Symbol 1178 MovieClip {Page92} | Uses:221 1171 1172 1174 1175 1176 1177 | |
Symbol 1179 Font | Used by:1181 | |
Symbol 1180 Graphic | Used by:1187 | |
Symbol 1181 EditableText | Uses:1179 | Used by:1187 |
Symbol 1182 Font | Used by:1184 | |
Symbol 1183 Graphic | Used by:1187 | |
Symbol 1184 EditableText | Uses:1182 | Used by:1187 |
Symbol 1185 Text | Uses:289 284 615 515 | Used by:1187 |
Symbol 1186 Text | Uses:289 284 | Used by:1187 |
Symbol 1187 MovieClip {Page93} | Uses:221 1180 1181 1183 1184 1185 1186 | |
Symbol 1188 Font | Used by:1190 | |
Symbol 1189 Graphic | Used by:1197 | |
Symbol 1190 EditableText | Uses:1188 | Used by:1197 |
Symbol 1191 Font | Used by:1193 | |
Symbol 1192 Graphic | Used by:1197 | |
Symbol 1193 EditableText | Uses:1191 | Used by:1197 |
Symbol 1194 Text | Uses:289 616 290 309 452 903 | Used by:1197 |
Symbol 1195 Graphic | Used by:1197 | |
Symbol 1196 Text | Uses:616 | Used by:1197 |
Symbol 1197 MovieClip {Page94} | Uses:221 1189 1190 1192 1193 1194 1195 1196 | |
Symbol 1198 Font | Used by:1200 | |
Symbol 1199 Graphic | Used by:1965 | |
Symbol 1200 EditableText | Uses:1198 | Used by:1965 |
Symbol 1201 Bitmap | Used by:1960 | |
Symbol 1202 Bitmap | Used by:1960 | |
Symbol 1203 Bitmap | Used by:1960 | |
Symbol 1204 Bitmap | Used by:1960 | |
Symbol 1205 Bitmap | Used by:1960 | |
Symbol 1206 Bitmap | Used by:1960 | |
Symbol 1207 Bitmap | Used by:1960 | |
Symbol 1208 Bitmap | Used by:1960 | |
Symbol 1209 Bitmap | Used by:1960 | |
Symbol 1210 Bitmap | Used by:1960 | |
Symbol 1211 Bitmap | Used by:1960 | |
Symbol 1212 Bitmap | Used by:1960 | |
Symbol 1213 Bitmap | Used by:1960 | |
Symbol 1214 Bitmap | Used by:1960 | |
Symbol 1215 Bitmap | Used by:1960 | |
Symbol 1216 Bitmap | Used by:1960 | |
Symbol 1217 Bitmap | Used by:1960 | |
Symbol 1218 Bitmap | Used by:1960 | |
Symbol 1219 Bitmap | Used by:1960 | |
Symbol 1220 Bitmap | Used by:1960 | |
Symbol 1221 Bitmap | Used by:1960 | |
Symbol 1222 Bitmap | Used by:1960 | |
Symbol 1223 Bitmap | Used by:1960 | |
Symbol 1224 Bitmap | Used by:1960 | |
Symbol 1225 Bitmap | Used by:1960 | |
Symbol 1226 Bitmap | Used by:1960 | |
Symbol 1227 Bitmap | Used by:1960 | |
Symbol 1228 Bitmap | Used by:1960 | |
Symbol 1229 Bitmap | Used by:1960 | |
Symbol 1230 Bitmap | Used by:1960 | |
Symbol 1231 Bitmap | Used by:1960 | |
Symbol 1232 Bitmap | Used by:1960 | |
Symbol 1233 Bitmap | Used by:1960 | |
Symbol 1234 Bitmap | Used by:1960 | |
Symbol 1235 Bitmap | Used by:1960 | |
Symbol 1236 Bitmap | Used by:1960 | |
Symbol 1237 Bitmap | Used by:1960 | |
Symbol 1238 Bitmap | Used by:1960 | |
Symbol 1239 Bitmap | Used by:1960 | |
Symbol 1240 Bitmap | Used by:1960 | |
Symbol 1241 Bitmap | Used by:1960 | |
Symbol 1242 Bitmap | Used by:1960 | |
Symbol 1243 Bitmap | Used by:1960 | |
Symbol 1244 Bitmap | Used by:1960 | |
Symbol 1245 Bitmap | Used by:1960 | |
Symbol 1246 Bitmap | Used by:1960 | |
Symbol 1247 Bitmap | Used by:1960 | |
Symbol 1248 Bitmap | Used by:1960 | |
Symbol 1249 Bitmap | Used by:1960 | |
Symbol 1250 Bitmap | Used by:1960 | |
Symbol 1251 Bitmap | Used by:1960 | |
Symbol 1252 Bitmap | Used by:1960 | |
Symbol 1253 Bitmap | Used by:1960 | |
Symbol 1254 Bitmap | Used by:1960 | |
Symbol 1255 Bitmap | Used by:1960 | |
Symbol 1256 Bitmap | Used by:1960 | |
Symbol 1257 Bitmap | Used by:1960 | |
Symbol 1258 Bitmap | Used by:1960 | |
Symbol 1259 Bitmap | Used by:1960 | |
Symbol 1260 Bitmap | Used by:1960 | |
Symbol 1261 Bitmap | Used by:1960 | |
Symbol 1262 Bitmap | Used by:1960 | |
Symbol 1263 Bitmap | Used by:1960 | |
Symbol 1264 Bitmap | Used by:1960 | |
Symbol 1265 Bitmap | Used by:1960 | |
Symbol 1266 Bitmap | Used by:1960 | |
Symbol 1267 Bitmap | Used by:1960 | |
Symbol 1268 Bitmap | Used by:1960 | |
Symbol 1269 Bitmap | Used by:1960 | |
Symbol 1270 Bitmap | Used by:1960 | |
Symbol 1271 Bitmap | Used by:1960 | |
Symbol 1272 Bitmap | Used by:1960 | |
Symbol 1273 Bitmap | Used by:1960 | |
Symbol 1274 Bitmap | Used by:1960 | |
Symbol 1275 Bitmap | Used by:1960 | |
Symbol 1276 Bitmap | Used by:1960 | |
Symbol 1277 Bitmap | Used by:1960 | |
Symbol 1278 Bitmap | Used by:1960 | |
Symbol 1279 Bitmap | Used by:1960 | |
Symbol 1280 Bitmap | Used by:1960 | |
Symbol 1281 Bitmap | Used by:1960 | |
Symbol 1282 Bitmap | Used by:1960 | |
Symbol 1283 Bitmap | Used by:1960 | |
Symbol 1284 Bitmap | Used by:1960 | |
Symbol 1285 Bitmap | Used by:1960 | |
Symbol 1286 Bitmap | Used by:1960 | |
Symbol 1287 Bitmap | Used by:1960 | |
Symbol 1288 Bitmap | Used by:1960 | |
Symbol 1289 Bitmap | Used by:1960 | |
Symbol 1290 Bitmap | Used by:1960 | |
Symbol 1291 Bitmap | Used by:1960 | |
Symbol 1292 Bitmap | Used by:1960 | |
Symbol 1293 Bitmap | Used by:1960 | |
Symbol 1294 Bitmap | Used by:1960 | |
Symbol 1295 Bitmap | Used by:1960 | |
Symbol 1296 Bitmap | Used by:1960 | |
Symbol 1297 Bitmap | Used by:1960 | |
Symbol 1298 Bitmap | Used by:1960 | |
Symbol 1299 Bitmap | Used by:1960 | |
Symbol 1300 Bitmap | Used by:1960 | |
Symbol 1301 Bitmap | Used by:1960 | |
Symbol 1302 Bitmap | Used by:1960 | |
Symbol 1303 Bitmap | Used by:1960 | |
Symbol 1304 Bitmap | Used by:1960 | |
Symbol 1305 Bitmap | Used by:1960 | |
Symbol 1306 Bitmap | Used by:1960 | |
Symbol 1307 Bitmap | Used by:1960 | |
Symbol 1308 Bitmap | Used by:1960 | |
Symbol 1309 Bitmap | Used by:1960 | |
Symbol 1310 Bitmap | Used by:1960 | |
Symbol 1311 Bitmap | Used by:1960 | |
Symbol 1312 Bitmap | Used by:1960 | |
Symbol 1313 Bitmap | Used by:1960 | |
Symbol 1314 Bitmap | Used by:1960 | |
Symbol 1315 Bitmap | Used by:1960 | |
Symbol 1316 Bitmap | Used by:1960 | |
Symbol 1317 Bitmap | Used by:1960 | |
Symbol 1318 Bitmap | Used by:1960 | |
Symbol 1319 Bitmap | Used by:1960 | |
Symbol 1320 Bitmap | Used by:1960 | |
Symbol 1321 Bitmap | Used by:1960 | |
Symbol 1322 Bitmap | Used by:1960 | |
Symbol 1323 Bitmap | Used by:1960 | |
Symbol 1324 Bitmap | Used by:1960 | |
Symbol 1325 Bitmap | Used by:1960 | |
Symbol 1326 Bitmap | Used by:1960 | |
Symbol 1327 Bitmap | Used by:1960 | |
Symbol 1328 Bitmap | Used by:1960 | |
Symbol 1329 Bitmap | Used by:1960 | |
Symbol 1330 Bitmap | Used by:1960 | |
Symbol 1331 Bitmap | Used by:1960 | |
Symbol 1332 Bitmap | Used by:1960 | |
Symbol 1333 Bitmap | Used by:1960 | |
Symbol 1334 Bitmap | Used by:1960 | |
Symbol 1335 Bitmap | Used by:1960 | |
Symbol 1336 Bitmap | Used by:1960 | |
Symbol 1337 Bitmap | Used by:1960 | |
Symbol 1338 Bitmap | Used by:1960 | |
Symbol 1339 Bitmap | Used by:1960 | |
Symbol 1340 Bitmap | Used by:1960 | |
Symbol 1341 Bitmap | Used by:1960 | |
Symbol 1342 Bitmap | Used by:1960 | |
Symbol 1343 Bitmap | Used by:1960 | |
Symbol 1344 Bitmap | Used by:1960 | |
Symbol 1345 Bitmap | Used by:1960 | |
Symbol 1346 Bitmap | Used by:1960 | |
Symbol 1347 Bitmap | Used by:1960 | |
Symbol 1348 Bitmap | Used by:1960 | |
Symbol 1349 Bitmap | Used by:1960 | |
Symbol 1350 Bitmap | Used by:1960 | |
Symbol 1351 Bitmap | Used by:1960 | |
Symbol 1352 Bitmap | Used by:1960 | |
Symbol 1353 Bitmap | Used by:1960 | |
Symbol 1354 Bitmap | Used by:1960 | |
Symbol 1355 Bitmap | Used by:1960 | |
Symbol 1356 Bitmap | Used by:1960 | |
Symbol 1357 Bitmap | Used by:1960 | |
Symbol 1358 Bitmap | Used by:1960 | |
Symbol 1359 Bitmap | Used by:1960 | |
Symbol 1360 Bitmap | Used by:1960 | |
Symbol 1361 Bitmap | Used by:1960 | |
Symbol 1362 Bitmap | Used by:1960 | |
Symbol 1363 Bitmap | Used by:1960 | |
Symbol 1364 Bitmap | Used by:1960 | |
Symbol 1365 Bitmap | Used by:1960 | |
Symbol 1366 Bitmap | Used by:1960 | |
Symbol 1367 Bitmap | Used by:1960 | |
Symbol 1368 Bitmap | Used by:1960 | |
Symbol 1369 Bitmap | Used by:1960 | |
Symbol 1370 Bitmap | Used by:1960 | |
Symbol 1371 Bitmap | Used by:1960 | |
Symbol 1372 Bitmap | Used by:1960 | |
Symbol 1373 Bitmap | Used by:1960 | |
Symbol 1374 Bitmap | Used by:1960 | |
Symbol 1375 Bitmap | Used by:1960 | |
Symbol 1376 Bitmap | Used by:1960 | |
Symbol 1377 Bitmap | Used by:1960 | |
Symbol 1378 Bitmap | Used by:1960 | |
Symbol 1379 Bitmap | Used by:1960 | |
Symbol 1380 Bitmap | Used by:1960 | |
Symbol 1381 Bitmap | Used by:1960 | |
Symbol 1382 Bitmap | Used by:1960 | |
Symbol 1383 Bitmap | Used by:1960 | |
Symbol 1384 Bitmap | Used by:1960 | |
Symbol 1385 Bitmap | Used by:1960 | |
Symbol 1386 Bitmap | Used by:1960 | |
Symbol 1387 Bitmap | Used by:1960 | |
Symbol 1388 Bitmap | Used by:1960 | |
Symbol 1389 Bitmap | Used by:1960 | |
Symbol 1390 Bitmap | Used by:1960 | |
Symbol 1391 Bitmap | Used by:1960 | |
Symbol 1392 Bitmap | Used by:1960 | |
Symbol 1393 Bitmap | Used by:1960 | |
Symbol 1394 Bitmap | Used by:1960 | |
Symbol 1395 Bitmap | Used by:1960 | |
Symbol 1396 Bitmap | Used by:1960 | |
Symbol 1397 Bitmap | Used by:1960 | |
Symbol 1398 Bitmap | Used by:1960 | |
Symbol 1399 Bitmap | Used by:1960 | |
Symbol 1400 Bitmap | Used by:1960 | |
Symbol 1401 Bitmap | Used by:1960 | |
Symbol 1402 Bitmap | Used by:1960 | |
Symbol 1403 Bitmap | Used by:1960 | |
Symbol 1404 Bitmap | Used by:1960 | |
Symbol 1405 Bitmap | Used by:1960 | |
Symbol 1406 Bitmap | Used by:1960 | |
Symbol 1407 Bitmap | Used by:1960 | |
Symbol 1408 Bitmap | Used by:1960 | |
Symbol 1409 Bitmap | Used by:1960 | |
Symbol 1410 Bitmap | Used by:1960 | |
Symbol 1411 Bitmap | Used by:1960 | |
Symbol 1412 Bitmap | Used by:1960 | |
Symbol 1413 Bitmap | Used by:1960 | |
Symbol 1414 Bitmap | Used by:1960 | |
Symbol 1415 Bitmap | Used by:1960 | |
Symbol 1416 Bitmap | Used by:1960 | |
Symbol 1417 Bitmap | Used by:1960 | |
Symbol 1418 Bitmap | Used by:1960 | |
Symbol 1419 Bitmap | Used by:1960 | |
Symbol 1420 Bitmap | Used by:1960 | |
Symbol 1421 Bitmap | Used by:1960 | |
Symbol 1422 Bitmap | Used by:1960 | |
Symbol 1423 Bitmap | Used by:1960 | |
Symbol 1424 Bitmap | Used by:1960 | |
Symbol 1425 Bitmap | Used by:1960 | |
Symbol 1426 Bitmap | Used by:1960 | |
Symbol 1427 Bitmap | Used by:1960 | |
Symbol 1428 Bitmap | Used by:1960 | |
Symbol 1429 Bitmap | Used by:1960 | |
Symbol 1430 Bitmap | Used by:1960 | |
Symbol 1431 Bitmap | Used by:1960 | |
Symbol 1432 Bitmap | Used by:1960 | |
Symbol 1433 Bitmap | Used by:1960 | |
Symbol 1434 Bitmap | Used by:1960 | |
Symbol 1435 Bitmap | Used by:1960 | |
Symbol 1436 Bitmap | Used by:1960 | |
Symbol 1437 Bitmap | Used by:1960 | |
Symbol 1438 Bitmap | Used by:1960 | |
Symbol 1439 Bitmap | Used by:1960 | |
Symbol 1440 Bitmap | Used by:1960 | |
Symbol 1441 Bitmap | Used by:1960 | |
Symbol 1442 Bitmap | Used by:1960 | |
Symbol 1443 Bitmap | Used by:1960 | |
Symbol 1444 Bitmap | Used by:1960 | |
Symbol 1445 Bitmap | Used by:1960 | |
Symbol 1446 Bitmap | Used by:1960 | |
Symbol 1447 Bitmap | Used by:1960 | |
Symbol 1448 Bitmap | Used by:1960 | |
Symbol 1449 Bitmap | Used by:1960 | |
Symbol 1450 Bitmap | Used by:1960 | |
Symbol 1451 Bitmap | Used by:1960 | |
Symbol 1452 Bitmap | Used by:1960 | |
Symbol 1453 Bitmap | Used by:1960 | |
Symbol 1454 Bitmap | Used by:1960 | |
Symbol 1455 Bitmap | Used by:1960 | |
Symbol 1456 Bitmap | Used by:1960 | |
Symbol 1457 Bitmap | Used by:1960 | |
Symbol 1458 Bitmap | Used by:1960 | |
Symbol 1459 Bitmap | Used by:1960 | |
Symbol 1460 Bitmap | Used by:1960 | |
Symbol 1461 Bitmap | Used by:1960 | |
Symbol 1462 Bitmap | Used by:1960 | |
Symbol 1463 Bitmap | Used by:1960 | |
Symbol 1464 Bitmap | Used by:1960 | |
Symbol 1465 Bitmap | Used by:1960 | |
Symbol 1466 Bitmap | Used by:1960 | |
Symbol 1467 Bitmap | Used by:1960 | |
Symbol 1468 Bitmap | Used by:1960 | |
Symbol 1469 Bitmap | Used by:1960 | |
Symbol 1470 Bitmap | Used by:1960 | |
Symbol 1471 Bitmap | Used by:1960 | |
Symbol 1472 Bitmap | Used by:1960 | |
Symbol 1473 Bitmap | Used by:1960 | |
Symbol 1474 Bitmap | Used by:1960 | |
Symbol 1475 Bitmap | Used by:1960 | |
Symbol 1476 Bitmap | Used by:1960 | |
Symbol 1477 Bitmap | Used by:1960 | |
Symbol 1478 Bitmap | Used by:1960 | |
Symbol 1479 Bitmap | Used by:1960 | |
Symbol 1480 Bitmap | Used by:1960 | |
Symbol 1481 Bitmap | Used by:1960 | |
Symbol 1482 Bitmap | Used by:1960 | |
Symbol 1483 Bitmap | Used by:1960 | |
Symbol 1484 Bitmap | Used by:1960 | |
Symbol 1485 Bitmap | Used by:1960 | |
Symbol 1486 Bitmap | Used by:1960 | |
Symbol 1487 Bitmap | Used by:1960 | |
Symbol 1488 Bitmap | Used by:1960 | |
Symbol 1489 Bitmap | Used by:1960 | |
Symbol 1490 Bitmap | Used by:1960 | |
Symbol 1491 Bitmap | Used by:1960 | |
Symbol 1492 Bitmap | Used by:1960 | |
Symbol 1493 Bitmap | Used by:1960 | |
Symbol 1494 Bitmap | Used by:1960 | |
Symbol 1495 Bitmap | Used by:1960 | |
Symbol 1496 Bitmap | Used by:1960 | |
Symbol 1497 Bitmap | Used by:1960 | |
Symbol 1498 Bitmap | Used by:1960 | |
Symbol 1499 Bitmap | Used by:1960 | |
Symbol 1500 Bitmap | Used by:1960 | |
Symbol 1501 Bitmap | Used by:1960 | |
Symbol 1502 Bitmap | Used by:1960 | |
Symbol 1503 Bitmap | Used by:1960 | |
Symbol 1504 Bitmap | Used by:1960 | |
Symbol 1505 Bitmap | Used by:1960 | |
Symbol 1506 Bitmap | Used by:1960 | |
Symbol 1507 Bitmap | Used by:1960 | |
Symbol 1508 Bitmap | Used by:1960 | |
Symbol 1509 Bitmap | Used by:1960 | |
Symbol 1510 Bitmap | Used by:1960 | |
Symbol 1511 Bitmap | Used by:1960 | |
Symbol 1512 Bitmap | Used by:1960 | |
Symbol 1513 Bitmap | Used by:1960 | |
Symbol 1514 Bitmap | Used by:1960 | |
Symbol 1515 Bitmap | Used by:1960 | |
Symbol 1516 Bitmap | Used by:1960 | |
Symbol 1517 Bitmap | Used by:1960 | |
Symbol 1518 Bitmap | Used by:1960 | |
Symbol 1519 Bitmap | Used by:1960 | |
Symbol 1520 Bitmap | Used by:1960 | |
Symbol 1521 Bitmap | Used by:1960 | |
Symbol 1522 Bitmap | Used by:1960 | |
Symbol 1523 Bitmap | Used by:1960 | |
Symbol 1524 Bitmap | Used by:1960 | |
Symbol 1525 Bitmap | Used by:1960 | |
Symbol 1526 Bitmap | Used by:1960 | |
Symbol 1527 Bitmap | Used by:1960 | |
Symbol 1528 Bitmap | Used by:1960 | |
Symbol 1529 Bitmap | Used by:1960 | |
Symbol 1530 Bitmap | Used by:1960 | |
Symbol 1531 Bitmap | Used by:1960 | |
Symbol 1532 Bitmap | Used by:1960 | |
Symbol 1533 Bitmap | Used by:1960 | |
Symbol 1534 Bitmap | Used by:1960 | |
Symbol 1535 Bitmap | Used by:1960 | |
Symbol 1536 Bitmap | Used by:1960 | |
Symbol 1537 Bitmap | Used by:1960 | |
Symbol 1538 Bitmap | Used by:1960 | |
Symbol 1539 Bitmap | Used by:1960 | |
Symbol 1540 Bitmap | Used by:1960 | |
Symbol 1541 Bitmap | Used by:1960 | |
Symbol 1542 Bitmap | Used by:1960 | |
Symbol 1543 Bitmap | Used by:1960 | |
Symbol 1544 Bitmap | Used by:1960 | |
Symbol 1545 Bitmap | Used by:1960 | |
Symbol 1546 Bitmap | Used by:1960 | |
Symbol 1547 Bitmap | Used by:1960 | |
Symbol 1548 Bitmap | Used by:1960 | |
Symbol 1549 Bitmap | Used by:1960 | |
Symbol 1550 Bitmap | Used by:1960 | |
Symbol 1551 Bitmap | Used by:1960 | |
Symbol 1552 Bitmap | Used by:1960 | |
Symbol 1553 Bitmap | Used by:1960 | |
Symbol 1554 Bitmap | Used by:1960 | |
Symbol 1555 Bitmap | Used by:1960 | |
Symbol 1556 Bitmap | Used by:1960 | |
Symbol 1557 Bitmap | Used by:1960 | |
Symbol 1558 Bitmap | Used by:1960 | |
Symbol 1559 Bitmap | Used by:1960 | |
Symbol 1560 Bitmap | Used by:1960 | |
Symbol 1561 Bitmap | Used by:1960 | |
Symbol 1562 Bitmap | Used by:1960 | |
Symbol 1563 Bitmap | Used by:1960 | |
Symbol 1564 Bitmap | Used by:1960 | |
Symbol 1565 Bitmap | Used by:1960 | |
Symbol 1566 Bitmap | Used by:1960 | |
Symbol 1567 Bitmap | Used by:1960 | |
Symbol 1568 Bitmap | Used by:1960 | |
Symbol 1569 Bitmap | Used by:1960 | |
Symbol 1570 Bitmap | Used by:1960 | |
Symbol 1571 Bitmap | Used by:1960 | |
Symbol 1572 Bitmap | Used by:1960 | |
Symbol 1573 Bitmap | Used by:1960 | |
Symbol 1574 Bitmap | Used by:1960 | |
Symbol 1575 Bitmap | Used by:1960 | |
Symbol 1576 Bitmap | Used by:1960 | |
Symbol 1577 Bitmap | Used by:1960 | |
Symbol 1578 Bitmap | Used by:1960 | |
Symbol 1579 Bitmap | Used by:1960 | |
Symbol 1580 Bitmap | Used by:1960 | |
Symbol 1581 Bitmap | Used by:1960 | |
Symbol 1582 Bitmap | Used by:1960 | |
Symbol 1583 Bitmap | Used by:1960 | |
Symbol 1584 Bitmap | Used by:1960 | |
Symbol 1585 Bitmap | Used by:1960 | |
Symbol 1586 Bitmap | Used by:1960 | |
Symbol 1587 Bitmap | Used by:1960 | |
Symbol 1588 Bitmap | Used by:1960 | |
Symbol 1589 Bitmap | Used by:1960 | |
Symbol 1590 Bitmap | Used by:1960 | |
Symbol 1591 Bitmap | Used by:1960 | |
Symbol 1592 Bitmap | Used by:1960 | |
Symbol 1593 Bitmap | Used by:1960 | |
Symbol 1594 Bitmap | Used by:1960 | |
Symbol 1595 Bitmap | Used by:1960 | |
Symbol 1596 Bitmap | Used by:1960 | |
Symbol 1597 Bitmap | Used by:1960 | |
Symbol 1598 Bitmap | Used by:1960 | |
Symbol 1599 Bitmap | Used by:1960 | |
Symbol 1600 Bitmap | Used by:1960 | |
Symbol 1601 Bitmap | Used by:1960 | |
Symbol 1602 Bitmap | Used by:1960 | |
Symbol 1603 Bitmap | Used by:1960 | |
Symbol 1604 Bitmap | Used by:1960 | |
Symbol 1605 Bitmap | Used by:1960 | |
Symbol 1606 Bitmap | Used by:1960 | |
Symbol 1607 Bitmap | Used by:1960 | |
Symbol 1608 Bitmap | Used by:1960 | |
Symbol 1609 Bitmap | Used by:1960 | |
Symbol 1610 Bitmap | Used by:1960 | |
Symbol 1611 Bitmap | Used by:1960 | |
Symbol 1612 Bitmap | Used by:1960 | |
Symbol 1613 Bitmap | Used by:1960 | |
Symbol 1614 Bitmap | Used by:1960 | |
Symbol 1615 Bitmap | Used by:1960 | |
Symbol 1616 Bitmap | Used by:1960 | |
Symbol 1617 Bitmap | Used by:1960 | |
Symbol 1618 Bitmap | Used by:1960 | |
Symbol 1619 Bitmap | Used by:1960 | |
Symbol 1620 Bitmap | Used by:1960 | |
Symbol 1621 Bitmap | Used by:1960 | |
Symbol 1622 Bitmap | Used by:1960 | |
Symbol 1623 Bitmap | Used by:1960 | |
Symbol 1624 Bitmap | Used by:1960 | |
Symbol 1625 Bitmap | Used by:1960 | |
Symbol 1626 Bitmap | Used by:1960 | |
Symbol 1627 Bitmap | Used by:1960 | |
Symbol 1628 Bitmap | Used by:1960 | |
Symbol 1629 Bitmap | Used by:1960 | |
Symbol 1630 Bitmap | Used by:1960 | |
Symbol 1631 Bitmap | Used by:1960 | |
Symbol 1632 Bitmap | Used by:1960 | |
Symbol 1633 Bitmap | Used by:1960 | |
Symbol 1634 Bitmap | Used by:1960 | |
Symbol 1635 Bitmap | Used by:1960 | |
Symbol 1636 Bitmap | Used by:1960 | |
Symbol 1637 Bitmap | Used by:1960 | |
Symbol 1638 Bitmap | Used by:1960 | |
Symbol 1639 Bitmap | Used by:1960 | |
Symbol 1640 Bitmap | Used by:1960 | |
Symbol 1641 Bitmap | Used by:1960 | |
Symbol 1642 Bitmap | Used by:1960 | |
Symbol 1643 Bitmap | Used by:1960 | |
Symbol 1644 Bitmap | Used by:1960 | |
Symbol 1645 Bitmap | Used by:1960 | |
Symbol 1646 Bitmap | Used by:1960 | |
Symbol 1647 Bitmap | Used by:1960 | |
Symbol 1648 Bitmap | Used by:1960 | |
Symbol 1649 Bitmap | Used by:1960 | |
Symbol 1650 Bitmap | Used by:1960 | |
Symbol 1651 Bitmap | Used by:1960 | |
Symbol 1652 Bitmap | Used by:1960 | |
Symbol 1653 Bitmap | Used by:1960 | |
Symbol 1654 Bitmap | Used by:1960 | |
Symbol 1655 Bitmap | Used by:1960 | |
Symbol 1656 Bitmap | Used by:1960 | |
Symbol 1657 Bitmap | Used by:1960 | |
Symbol 1658 Bitmap | Used by:1960 | |
Symbol 1659 Bitmap | Used by:1960 | |
Symbol 1660 Bitmap | Used by:1960 | |
Symbol 1661 Bitmap | Used by:1960 | |
Symbol 1662 Bitmap | Used by:1960 | |
Symbol 1663 Bitmap | Used by:1960 | |
Symbol 1664 Bitmap | Used by:1960 | |
Symbol 1665 Bitmap | Used by:1960 | |
Symbol 1666 Bitmap | Used by:1960 | |
Symbol 1667 Bitmap | Used by:1960 | |
Symbol 1668 Bitmap | Used by:1960 | |
Symbol 1669 Bitmap | Used by:1960 | |
Symbol 1670 Bitmap | Used by:1960 | |
Symbol 1671 Bitmap | Used by:1960 | |
Symbol 1672 Bitmap | Used by:1960 | |
Symbol 1673 Bitmap | Used by:1960 | |
Symbol 1674 Bitmap | Used by:1960 | |
Symbol 1675 Bitmap | Used by:1960 | |
Symbol 1676 Bitmap | Used by:1960 | |
Symbol 1677 Bitmap | Used by:1960 | |
Symbol 1678 Bitmap | Used by:1960 | |
Symbol 1679 Bitmap | Used by:1960 | |
Symbol 1680 Bitmap | Used by:1960 | |
Symbol 1681 Bitmap | Used by:1960 | |
Symbol 1682 Bitmap | Used by:1960 | |
Symbol 1683 Bitmap | Used by:1960 | |
Symbol 1684 Bitmap | Used by:1960 | |
Symbol 1685 Bitmap | Used by:1960 | |
Symbol 1686 Bitmap | Used by:1960 | |
Symbol 1687 Bitmap | Used by:1960 | |
Symbol 1688 Bitmap | Used by:1960 | |
Symbol 1689 Bitmap | Used by:1960 | |
Symbol 1690 Bitmap | Used by:1960 | |
Symbol 1691 Bitmap | Used by:1960 | |
Symbol 1692 Bitmap | Used by:1960 | |
Symbol 1693 Bitmap | Used by:1960 | |
Symbol 1694 Bitmap | Used by:1960 | |
Symbol 1695 Bitmap | Used by:1960 | |
Symbol 1696 Bitmap | Used by:1960 | |
Symbol 1697 Bitmap | Used by:1960 | |
Symbol 1698 Bitmap | Used by:1960 | |
Symbol 1699 Bitmap | Used by:1960 | |
Symbol 1700 Bitmap | Used by:1960 | |
Symbol 1701 Bitmap | Used by:1960 | |
Symbol 1702 Bitmap | Used by:1960 | |
Symbol 1703 Bitmap | Used by:1960 | |
Symbol 1704 Bitmap | Used by:1960 | |
Symbol 1705 Bitmap | Used by:1960 | |
Symbol 1706 Bitmap | Used by:1960 | |
Symbol 1707 Bitmap | Used by:1960 | |
Symbol 1708 Bitmap | Used by:1960 | |
Symbol 1709 Bitmap | Used by:1960 | |
Symbol 1710 Bitmap | Used by:1960 | |
Symbol 1711 Bitmap | Used by:1960 | |
Symbol 1712 Bitmap | Used by:1960 | |
Symbol 1713 Bitmap | Used by:1960 | |
Symbol 1714 Bitmap | Used by:1960 | |
Symbol 1715 Bitmap | Used by:1960 | |
Symbol 1716 Bitmap | Used by:1960 | |
Symbol 1717 Bitmap | Used by:1960 | |
Symbol 1718 Bitmap | Used by:1960 | |
Symbol 1719 Bitmap | Used by:1960 | |
Symbol 1720 Bitmap | Used by:1960 | |
Symbol 1721 Bitmap | Used by:1960 | |
Symbol 1722 Bitmap | Used by:1960 | |
Symbol 1723 Bitmap | Used by:1960 | |
Symbol 1724 Bitmap | Used by:1960 | |
Symbol 1725 Bitmap | Used by:1960 | |
Symbol 1726 Bitmap | Used by:1960 | |
Symbol 1727 Bitmap | Used by:1960 | |
Symbol 1728 Bitmap | Used by:1960 | |
Symbol 1729 Bitmap | Used by:1960 | |
Symbol 1730 Bitmap | Used by:1960 | |
Symbol 1731 Bitmap | Used by:1960 | |
Symbol 1732 Bitmap | Used by:1960 | |
Symbol 1733 Bitmap | Used by:1960 | |
Symbol 1734 Bitmap | Used by:1960 | |
Symbol 1735 Bitmap | Used by:1960 | |
Symbol 1736 Bitmap | Used by:1960 | |
Symbol 1737 Bitmap | Used by:1960 | |
Symbol 1738 Bitmap | Used by:1960 | |
Symbol 1739 Bitmap | Used by:1960 | |
Symbol 1740 Bitmap | Used by:1960 | |
Symbol 1741 Bitmap | Used by:1960 | |
Symbol 1742 Bitmap | Used by:1960 | |
Symbol 1743 Bitmap | Used by:1960 | |
Symbol 1744 Bitmap | Used by:1960 | |
Symbol 1745 Bitmap | Used by:1960 | |
Symbol 1746 Bitmap | Used by:1960 | |
Symbol 1747 Bitmap | Used by:1960 | |
Symbol 1748 Bitmap | Used by:1960 | |
Symbol 1749 Bitmap | Used by:1960 | |
Symbol 1750 Bitmap | Used by:1960 | |
Symbol 1751 Bitmap | Used by:1960 | |
Symbol 1752 Bitmap | Used by:1960 | |
Symbol 1753 Bitmap | Used by:1960 | |
Symbol 1754 Bitmap | Used by:1960 | |
Symbol 1755 Bitmap | Used by:1960 | |
Symbol 1756 Bitmap | Used by:1960 | |
Symbol 1757 Bitmap | Used by:1960 | |
Symbol 1758 Bitmap | Used by:1960 | |
Symbol 1759 Bitmap | Used by:1960 | |
Symbol 1760 Bitmap | Used by:1960 | |
Symbol 1761 Bitmap | Used by:1960 | |
Symbol 1762 Bitmap | Used by:1960 | |
Symbol 1763 Bitmap | Used by:1960 | |
Symbol 1764 Bitmap | Used by:1960 | |
Symbol 1765 Bitmap | Used by:1960 | |
Symbol 1766 Bitmap | Used by:1960 | |
Symbol 1767 Bitmap | Used by:1960 | |
Symbol 1768 Bitmap | Used by:1960 | |
Symbol 1769 Bitmap | Used by:1960 | |
Symbol 1770 Bitmap | Used by:1960 | |
Symbol 1771 Bitmap | Used by:1960 | |
Symbol 1772 Bitmap | Used by:1960 | |
Symbol 1773 Bitmap | Used by:1960 | |
Symbol 1774 Bitmap | Used by:1960 | |
Symbol 1775 Bitmap | Used by:1960 | |
Symbol 1776 Bitmap | Used by:1960 | |
Symbol 1777 Bitmap | Used by:1960 | |
Symbol 1778 Bitmap | Used by:1960 | |
Symbol 1779 Bitmap | Used by:1960 | |
Symbol 1780 Bitmap | Used by:1960 | |
Symbol 1781 Bitmap | Used by:1960 | |
Symbol 1782 Bitmap | Used by:1960 | |
Symbol 1783 Bitmap | Used by:1960 | |
Symbol 1784 Bitmap | Used by:1960 | |
Symbol 1785 Bitmap | Used by:1960 | |
Symbol 1786 Bitmap | Used by:1960 | |
Symbol 1787 Bitmap | Used by:1960 | |
Symbol 1788 Bitmap | Used by:1960 | |
Symbol 1789 Bitmap | Used by:1960 | |
Symbol 1790 Bitmap | Used by:1960 | |
Symbol 1791 Bitmap | Used by:1960 | |
Symbol 1792 Bitmap | Used by:1960 | |
Symbol 1793 Bitmap | Used by:1960 | |
Symbol 1794 Bitmap | Used by:1960 | |
Symbol 1795 Bitmap | Used by:1960 | |
Symbol 1796 Bitmap | Used by:1960 | |
Symbol 1797 Bitmap | Used by:1960 | |
Symbol 1798 Bitmap | Used by:1960 | |
Symbol 1799 Bitmap | Used by:1960 | |
Symbol 1800 Bitmap | Used by:1960 | |
Symbol 1801 Bitmap | Used by:1960 | |
Symbol 1802 Bitmap | Used by:1960 | |
Symbol 1803 Bitmap | Used by:1960 | |
Symbol 1804 Bitmap | Used by:1960 | |
Symbol 1805 Bitmap | Used by:1960 | |
Symbol 1806 Bitmap | Used by:1960 | |
Symbol 1807 Bitmap | Used by:1960 | |
Symbol 1808 Bitmap | Used by:1960 | |
Symbol 1809 Bitmap | Used by:1960 | |
Symbol 1810 Bitmap | Used by:1960 | |
Symbol 1811 Bitmap | Used by:1960 | |
Symbol 1812 Bitmap | Used by:1960 | |
Symbol 1813 Bitmap | Used by:1960 | |
Symbol 1814 Bitmap | Used by:1960 | |
Symbol 1815 Bitmap | Used by:1960 | |
Symbol 1816 Bitmap | Used by:1960 | |
Symbol 1817 Bitmap | Used by:1960 | |
Symbol 1818 Bitmap | Used by:1960 | |
Symbol 1819 Bitmap | Used by:1960 | |
Symbol 1820 Bitmap | Used by:1960 | |
Symbol 1821 Bitmap | Used by:1960 | |
Symbol 1822 Bitmap | Used by:1960 | |
Symbol 1823 Bitmap | Used by:1960 | |
Symbol 1824 Bitmap | Used by:1960 | |
Symbol 1825 Bitmap | Used by:1960 | |
Symbol 1826 Bitmap | Used by:1960 | |
Symbol 1827 Bitmap | Used by:1960 | |
Symbol 1828 Bitmap | Used by:1960 | |
Symbol 1829 Bitmap | Used by:1960 | |
Symbol 1830 Bitmap | Used by:1960 | |
Symbol 1831 Bitmap | Used by:1960 | |
Symbol 1832 Bitmap | Used by:1960 | |
Symbol 1833 Bitmap | Used by:1960 | |
Symbol 1834 Bitmap | Used by:1960 | |
Symbol 1835 Bitmap | Used by:1960 | |
Symbol 1836 Bitmap | Used by:1960 | |
Symbol 1837 Bitmap | Used by:1960 | |
Symbol 1838 Bitmap | Used by:1960 | |
Symbol 1839 Bitmap | Used by:1960 | |
Symbol 1840 Bitmap | Used by:1960 | |
Symbol 1841 Bitmap | Used by:1960 | |
Symbol 1842 Bitmap | Used by:1960 | |
Symbol 1843 Bitmap | Used by:1960 | |
Symbol 1844 Bitmap | Used by:1960 | |
Symbol 1845 Bitmap | Used by:1960 | |
Symbol 1846 Bitmap | Used by:1960 | |
Symbol 1847 Bitmap | Used by:1960 | |
Symbol 1848 Bitmap | Used by:1960 | |
Symbol 1849 Bitmap | Used by:1960 | |
Symbol 1850 Bitmap | Used by:1960 | |
Symbol 1851 Bitmap | Used by:1960 | |
Symbol 1852 Bitmap | Used by:1960 | |
Symbol 1853 Bitmap | Used by:1960 | |
Symbol 1854 Bitmap | Used by:1960 | |
Symbol 1855 Bitmap | Used by:1960 | |
Symbol 1856 Bitmap | Used by:1960 | |
Symbol 1857 Bitmap | Used by:1960 | |
Symbol 1858 Bitmap | Used by:1960 | |
Symbol 1859 Bitmap | Used by:1960 | |
Symbol 1860 Bitmap | Used by:1960 | |
Symbol 1861 Bitmap | Used by:1960 | |
Symbol 1862 Bitmap | Used by:1960 | |
Symbol 1863 Bitmap | Used by:1960 | |
Symbol 1864 Bitmap | Used by:1960 | |
Symbol 1865 Bitmap | Used by:1960 | |
Symbol 1866 Bitmap | Used by:1960 | |
Symbol 1867 Bitmap | Used by:1960 | |
Symbol 1868 Bitmap | Used by:1960 | |
Symbol 1869 Bitmap | Used by:1960 | |
Symbol 1870 Bitmap | Used by:1960 | |
Symbol 1871 Bitmap | Used by:1960 | |
Symbol 1872 Bitmap | Used by:1960 | |
Symbol 1873 Bitmap | Used by:1960 | |
Symbol 1874 Bitmap | Used by:1960 | |
Symbol 1875 Bitmap | Used by:1960 | |
Symbol 1876 Bitmap | Used by:1960 | |
Symbol 1877 Bitmap | Used by:1960 | |
Symbol 1878 Bitmap | Used by:1960 | |
Symbol 1879 Bitmap | Used by:1960 | |
Symbol 1880 Bitmap | Used by:1960 | |
Symbol 1881 Bitmap | Used by:1960 | |
Symbol 1882 Bitmap | Used by:1960 | |
Symbol 1883 Bitmap | Used by:1960 | |
Symbol 1884 Bitmap | Used by:1960 | |
Symbol 1885 Bitmap | Used by:1960 | |
Symbol 1886 Bitmap | Used by:1960 | |
Symbol 1887 Bitmap | Used by:1960 | |
Symbol 1888 Bitmap | Used by:1960 | |
Symbol 1889 Bitmap | Used by:1960 | |
Symbol 1890 Bitmap | Used by:1960 | |
Symbol 1891 Bitmap | Used by:1960 | |
Symbol 1892 Bitmap | Used by:1960 | |
Symbol 1893 Bitmap | Used by:1960 | |
Symbol 1894 Bitmap | Used by:1960 | |
Symbol 1895 Bitmap | Used by:1960 | |
Symbol 1896 Bitmap | Used by:1960 | |
Symbol 1897 Bitmap | Used by:1960 | |
Symbol 1898 Bitmap | Used by:1960 | |
Symbol 1899 Bitmap | Used by:1960 | |
Symbol 1900 Bitmap | Used by:1960 | |
Symbol 1901 Bitmap | Used by:1960 | |
Symbol 1902 Bitmap | Used by:1960 | |
Symbol 1903 Bitmap | Used by:1960 | |
Symbol 1904 Bitmap | Used by:1960 | |
Symbol 1905 Bitmap | Used by:1960 | |
Symbol 1906 Bitmap | Used by:1960 | |
Symbol 1907 Bitmap | Used by:1960 | |
Symbol 1908 Bitmap | Used by:1960 | |
Symbol 1909 Bitmap | Used by:1960 | |
Symbol 1910 Bitmap | Used by:1960 | |
Symbol 1911 Bitmap | Used by:1960 | |
Symbol 1912 Bitmap | Used by:1960 | |
Symbol 1913 Bitmap | Used by:1960 | |
Symbol 1914 Bitmap | Used by:1960 | |
Symbol 1915 Bitmap | Used by:1960 | |
Symbol 1916 Bitmap | Used by:1960 | |
Symbol 1917 Bitmap | Used by:1960 | |
Symbol 1918 Bitmap | Used by:1960 | |
Symbol 1919 Bitmap | Used by:1960 | |
Symbol 1920 Bitmap | Used by:1960 | |
Symbol 1921 Bitmap | Used by:1960 | |
Symbol 1922 Bitmap | Used by:1960 | |
Symbol 1923 Bitmap | Used by:1960 | |
Symbol 1924 Bitmap | Used by:1960 | |
Symbol 1925 Bitmap | Used by:1960 | |
Symbol 1926 Bitmap | Used by:1960 | |
Symbol 1927 Bitmap | Used by:1960 | |
Symbol 1928 Bitmap | Used by:1960 | |
Symbol 1929 Bitmap | Used by:1960 | |
Symbol 1930 Bitmap | Used by:1960 | |
Symbol 1931 Bitmap | Used by:1960 | |
Symbol 1932 Bitmap | Used by:1960 | |
Symbol 1933 Bitmap | Used by:1960 | |
Symbol 1934 Bitmap | Used by:1960 | |
Symbol 1935 Bitmap | Used by:1960 | |
Symbol 1936 Bitmap | Used by:1960 | |
Symbol 1937 Bitmap | Used by:1960 | |
Symbol 1938 Bitmap | Used by:1960 | |
Symbol 1939 Bitmap | Used by:1960 | |
Symbol 1940 Bitmap | Used by:1960 | |
Symbol 1941 Bitmap | Used by:1960 | |
Symbol 1942 Bitmap | Used by:1960 | |
Symbol 1943 Bitmap | Used by:1960 | |
Symbol 1944 Bitmap | Used by:1960 | |
Symbol 1945 Bitmap | Used by:1960 | |
Symbol 1946 Bitmap | Used by:1960 | |
Symbol 1947 Bitmap | Used by:1960 | |
Symbol 1948 Bitmap | Used by:1960 | |
Symbol 1949 Bitmap | Used by:1960 | |
Symbol 1950 Bitmap | Used by:1960 | |
Symbol 1951 Bitmap | Used by:1960 | |
Symbol 1952 Bitmap | Used by:1960 | |
Symbol 1953 Bitmap | Used by:1960 | |
Symbol 1954 Bitmap | Used by:1960 | |
Symbol 1955 Bitmap | Used by:1960 | |
Symbol 1956 Bitmap | Used by:1960 | |
Symbol 1957 Bitmap | Used by:1960 | |
Symbol 1958 Bitmap | Used by:1960 | |
Symbol 1959 Bitmap | Used by:1960 | |
Symbol 1960 Graphic | Uses:1201 1202 1203 1204 1205 1206 1207 1208 1209 250 1210 1211 1212 1213 1214 1215 1216 231 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 245 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 243 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 241 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 248 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 249 1493 1494 1495 1496 1497 247 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 234 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 255 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 | Used by:1965 |
Symbol 1961 Font | Used by:1963 | |
Symbol 1962 Graphic | Used by:1965 | |
Symbol 1963 EditableText | Uses:1961 | Used by:1965 |
Symbol 1964 Text | Uses:284 322 289 330 290 | Used by:1965 |
Symbol 1965 MovieClip {Page95} | Uses:221 1199 1200 1960 1962 1963 1964 | |
Symbol 1966 Font | Used by:1968 | |
Symbol 1967 Graphic | Used by:1976 | |
Symbol 1968 EditableText | Uses:1966 | Used by:1976 |
Symbol 1969 Graphic | Used by:1976 | |
Symbol 1970 Font | Used by:1972 | |
Symbol 1971 Graphic | Used by:1976 | |
Symbol 1972 EditableText | Uses:1970 | Used by:1976 |
Symbol 1973 Text | Uses:322 284 289 290 330 | Used by:1976 |
Symbol 1974 Graphic | Used by:1976 | |
Symbol 1975 Text | Uses:290 | Used by:1976 |
Symbol 1976 MovieClip {Page96} | Uses:221 1967 1968 1969 1971 1972 1973 1974 1975 | |
Symbol 1977 Font | Used by:1979 | |
Symbol 1978 Graphic | Used by:1984 | |
Symbol 1979 EditableText | Uses:1977 | Used by:1984 |
Symbol 1980 Font | Used by:1982 | |
Symbol 1981 Graphic | Used by:1984 | |
Symbol 1982 EditableText | Uses:1980 | Used by:1984 |
Symbol 1983 Text | Uses:615 284 289 330 309 | Used by:1984 |
Symbol 1984 MovieClip {Page97} | Uses:221 1978 1979 1981 1982 1983 | |
Symbol 1985 Font | Used by:1987 | |
Symbol 1986 Graphic | Used by:1992 | |
Symbol 1987 EditableText | Uses:1985 | Used by:1992 |
Symbol 1988 Font | Used by:1990 | |
Symbol 1989 Graphic | Used by:1992 | |
Symbol 1990 EditableText | Uses:1988 | Used by:1992 |
Symbol 1991 Text | Uses:615 284 289 330 | Used by:1992 |
Symbol 1992 MovieClip {Page98} | Uses:221 1986 1987 1989 1990 1991 | |
Symbol 1993 Font | Used by:1995 | |
Symbol 1994 Graphic | Used by:2000 | |
Symbol 1995 EditableText | Uses:1993 | Used by:2000 |
Symbol 1996 Font | Used by:1998 | |
Symbol 1997 Graphic | Used by:2000 | |
Symbol 1998 EditableText | Uses:1996 | Used by:2000 |
Symbol 1999 Text | Uses:289 284 309 330 515 322 | Used by:2000 |
Symbol 2000 MovieClip {Page99} | Uses:221 1994 1995 1997 1998 1999 | |
Symbol 2001 Font | Used by:2003 | |
Symbol 2002 Graphic | Used by:2009 | |
Symbol 2003 EditableText | Uses:2001 | Used by:2009 |
Symbol 2004 Font | Used by:2006 | |
Symbol 2005 Graphic | Used by:2009 | |
Symbol 2006 EditableText | Uses:2004 | Used by:2009 |
Symbol 2007 Text | Uses:322 284 615 289 309 | Used by:2009 |
Symbol 2008 Text | Uses:289 | Used by:2009 |
Symbol 2009 MovieClip {Page100} | Uses:221 2002 2003 2005 2006 2007 2008 | |
Symbol 2010 Font | Used by:2012 | |
Symbol 2011 Graphic | Used by:2018 | |
Symbol 2012 EditableText | Uses:2010 | Used by:2018 |
Symbol 2013 Font | Used by:2015 | |
Symbol 2014 Graphic | Used by:2018 | |
Symbol 2015 EditableText | Uses:2013 | Used by:2018 |
Symbol 2016 Text | Uses:289 284 615 309 | Used by:2018 |
Symbol 2017 Text | Uses:284 289 290 | Used by:2018 |
Symbol 2018 MovieClip {Page101} | Uses:221 2011 2012 2014 2015 2016 2017 | |
Symbol 2019 Font | Used by:2021 | |
Symbol 2020 Graphic | Used by:2027 | |
Symbol 2021 EditableText | Uses:2019 | Used by:2027 |
Symbol 2022 Font | Used by:2024 | |
Symbol 2023 Graphic | Used by:2027 | |
Symbol 2024 EditableText | Uses:2022 | Used by:2027 |
Symbol 2025 Text | Uses:289 284 615 290 | Used by:2027 |
Symbol 2026 Text | Uses:289 284 615 | Used by:2027 |
Symbol 2027 MovieClip {Page102} | Uses:221 2020 2021 2023 2024 2025 2026 | |
Symbol 2028 Font | Used by:2030 | |
Symbol 2029 Graphic | Used by:2035 | |
Symbol 2030 EditableText | Uses:2028 | Used by:2035 |
Symbol 2031 Font | Used by:2033 | |
Symbol 2032 Graphic | Used by:2035 | |
Symbol 2033 EditableText | Uses:2031 | Used by:2035 |
Symbol 2034 Text | Uses:289 284 615 290 | Used by:2035 |
Symbol 2035 MovieClip {Page103} | Uses:221 2029 2030 2032 2033 2034 | |
Symbol 2036 Font | Used by:2038 | |
Symbol 2037 Graphic | Used by:2043 | |
Symbol 2038 EditableText | Uses:2036 | Used by:2043 |
Symbol 2039 Font | Used by:2041 | |
Symbol 2040 Graphic | Used by:2043 | |
Symbol 2041 EditableText | Uses:2039 | Used by:2043 |
Symbol 2042 Text | Uses:322 284 606 289 | Used by:2043 |
Symbol 2043 MovieClip {Page104} | Uses:221 2037 2038 2040 2041 2042 | |
Symbol 2044 Font | Used by:2046 | |
Symbol 2045 Graphic | Used by:2053 | |
Symbol 2046 EditableText | Uses:2044 | Used by:2053 |
Symbol 2047 Font | Used by:2049 | |
Symbol 2048 Graphic | Used by:2053 | |
Symbol 2049 EditableText | Uses:2047 | Used by:2053 |
Symbol 2050 Text | Uses:322 284 2051 289 2052 | Used by:2053 |
Symbol 2051 Font | Used by:2050 2457 2520 2556 2579 2601 2628 2681 2707 3143 | |
Symbol 2052 Font | Used by:2050 2724 | |
Symbol 2053 MovieClip {Page105} | Uses:221 2045 2046 2048 2049 2050 | |
Symbol 2054 Font | Used by:2056 | |
Symbol 2055 Graphic | Used by:2067 | |
Symbol 2056 EditableText | Uses:2054 | Used by:2067 |
Symbol 2057 Font | Used by:2059 | |
Symbol 2058 Graphic | Used by:2067 | |
Symbol 2059 EditableText | Uses:2057 | Used by:2067 |
Symbol 2060 Text | Uses:322 284 289 309 2061 | Used by:2067 |
Symbol 2061 Font | Used by:2060 2064 | |
Symbol 2062 Font | Used by:2063 2066 | |
Symbol 2063 Text | Uses:2062 | Used by:2067 |
Symbol 2064 Text | Uses:2061 355 | Used by:2067 |
Symbol 2065 Graphic | Used by:2067 | |
Symbol 2066 Text | Uses:2062 | Used by:2067 |
Symbol 2067 MovieClip {Page106} | Uses:221 2055 2056 2058 2059 2060 2063 2064 2065 2066 | |
Symbol 2068 Font | Used by:2070 | |
Symbol 2069 Graphic | Used by:2077 | |
Symbol 2070 EditableText | Uses:2068 | Used by:2077 |
Symbol 2071 Bitmap | Used by:2072 | |
Symbol 2072 Graphic | Uses:2071 | Used by:2077 |
Symbol 2073 Font | Used by:2075 | |
Symbol 2074 Graphic | Used by:2077 | |
Symbol 2075 EditableText | Uses:2073 | Used by:2077 |
Symbol 2076 Text | Uses:322 284 819 664 289 309 | Used by:2077 |
Symbol 2077 MovieClip {Page107} | Uses:221 2069 2070 2072 2074 2075 2076 | |
Symbol 2078 Font | Used by:2080 | |
Symbol 2079 Graphic | Used by:2086 | |
Symbol 2080 EditableText | Uses:2078 | Used by:2086 |
Symbol 2081 Graphic | Uses:804 | Used by:2086 |
Symbol 2082 Font | Used by:2084 | |
Symbol 2083 Graphic | Used by:2086 | |
Symbol 2084 EditableText | Uses:2082 | Used by:2086 |
Symbol 2085 Text | Uses:322 284 706 664 289 | Used by:2086 |
Symbol 2086 MovieClip {Page108} | Uses:221 2079 2080 2081 2083 2084 2085 | |
Symbol 2087 Font | Used by:2089 | |
Symbol 2088 Graphic | Used by:2097 | |
Symbol 2089 EditableText | Uses:2087 | Used by:2097 |
Symbol 2090 Bitmap | Used by:2091 | |
Symbol 2091 Graphic | Uses:2090 | Used by:2097 |
Symbol 2092 Font | Used by:2094 | |
Symbol 2093 Graphic | Used by:2097 | |
Symbol 2094 EditableText | Uses:2092 | Used by:2097 |
Symbol 2095 Text | Uses:322 284 2096 289 | Used by:2097 |
Symbol 2096 Font | Used by:2095 | |
Symbol 2097 MovieClip {Page109} | Uses:221 2088 2089 2091 2093 2094 2095 | |
Symbol 2098 Font | Used by:2100 | |
Symbol 2099 Graphic | Used by:2107 | |
Symbol 2100 EditableText | Uses:2098 | Used by:2107 |
Symbol 2101 Graphic | Uses:1068 | Used by:2107 |
Symbol 2102 Font | Used by:2104 | |
Symbol 2103 Graphic | Used by:2107 | |
Symbol 2104 EditableText | Uses:2102 | Used by:2107 |
Symbol 2105 Text | Uses:322 284 2106 707 616 652 289 515 | Used by:2107 |
Symbol 2106 Font | Used by:2105 | |
Symbol 2107 MovieClip {Page110} | Uses:221 2099 2100 2101 2103 2104 2105 | |
Symbol 2108 Font | Used by:2110 | |
Symbol 2109 Graphic | Used by:2115 | |
Symbol 2110 EditableText | Uses:2108 | Used by:2115 |
Symbol 2111 Font | Used by:2113 | |
Symbol 2112 Graphic | Used by:2115 | |
Symbol 2113 EditableText | Uses:2111 | Used by:2115 |
Symbol 2114 Text | Uses:322 284 289 290 309 | Used by:2115 |
Symbol 2115 MovieClip {Page111} | Uses:221 2109 2110 2112 2113 2114 | |
Symbol 2116 Font | Used by:2118 | |
Symbol 2117 Graphic | Used by:2123 | |
Symbol 2118 EditableText | Uses:2116 | Used by:2123 |
Symbol 2119 Font | Used by:2121 | |
Symbol 2120 Graphic | Used by:2123 | |
Symbol 2121 EditableText | Uses:2119 | Used by:2123 |
Symbol 2122 Text | Uses:322 284 289 290 309 | Used by:2123 |
Symbol 2123 MovieClip {Page112} | Uses:221 2117 2118 2120 2121 2122 | |
Symbol 2124 Font | Used by:2126 | |
Symbol 2125 Graphic | Used by:2131 | |
Symbol 2126 EditableText | Uses:2124 | Used by:2131 |
Symbol 2127 Font | Used by:2129 | |
Symbol 2128 Graphic | Used by:2131 | |
Symbol 2129 EditableText | Uses:2127 | Used by:2131 |
Symbol 2130 Text | Uses:322 284 289 290 309 452 | Used by:2131 |
Symbol 2131 MovieClip {Page113} | Uses:221 2125 2126 2128 2129 2130 | |
Symbol 2132 Font | Used by:2134 | |
Symbol 2133 Graphic | Used by:2139 | |
Symbol 2134 EditableText | Uses:2132 | Used by:2139 |
Symbol 2135 Font | Used by:2137 | |
Symbol 2136 Graphic | Used by:2139 | |
Symbol 2137 EditableText | Uses:2135 | Used by:2139 |
Symbol 2138 Text | Uses:322 284 289 290 | Used by:2139 |
Symbol 2139 MovieClip {Page114} | Uses:221 2133 2134 2136 2137 2138 | |
Symbol 2140 Font | Used by:2142 | |
Symbol 2141 Graphic | Used by:2147 | |
Symbol 2142 EditableText | Uses:2140 | Used by:2147 |
Symbol 2143 Font | Used by:2145 | |
Symbol 2144 Graphic | Used by:2147 | |
Symbol 2145 EditableText | Uses:2143 | Used by:2147 |
Symbol 2146 Text | Uses:322 284 289 290 | Used by:2147 |
Symbol 2147 MovieClip {Page115} | Uses:221 2141 2142 2144 2145 2146 | |
Symbol 2148 Font | Used by:2150 | |
Symbol 2149 Graphic | Used by:2155 | |
Symbol 2150 EditableText | Uses:2148 | Used by:2155 |
Symbol 2151 Font | Used by:2153 | |
Symbol 2152 Graphic | Used by:2155 | |
Symbol 2153 EditableText | Uses:2151 | Used by:2155 |
Symbol 2154 Text | Uses:322 284 289 290 | Used by:2155 |
Symbol 2155 MovieClip {Page116} | Uses:221 2149 2150 2152 2153 2154 | |
Symbol 2156 Font | Used by:2158 | |
Symbol 2157 Graphic | Used by:2163 | |
Symbol 2158 EditableText | Uses:2156 | Used by:2163 |
Symbol 2159 Font | Used by:2161 | |
Symbol 2160 Graphic | Used by:2163 | |
Symbol 2161 EditableText | Uses:2159 | Used by:2163 |
Symbol 2162 Text | Uses:322 284 289 290 309 | Used by:2163 |
Symbol 2163 MovieClip {Page117} | Uses:221 2157 2158 2160 2161 2162 | |
Symbol 2164 Font | Used by:2166 | |
Symbol 2165 Graphic | Used by:2171 | |
Symbol 2166 EditableText | Uses:2164 | Used by:2171 |
Symbol 2167 Font | Used by:2169 | |
Symbol 2168 Graphic | Used by:2171 | |
Symbol 2169 EditableText | Uses:2167 | Used by:2171 |
Symbol 2170 Text | Uses:322 284 289 290 | Used by:2171 |
Symbol 2171 MovieClip {Page118} | Uses:221 2165 2166 2168 2169 2170 | |
Symbol 2172 Font | Used by:2174 | |
Symbol 2173 Graphic | Used by:2179 | |
Symbol 2174 EditableText | Uses:2172 | Used by:2179 |
Symbol 2175 Font | Used by:2177 | |
Symbol 2176 Graphic | Used by:2179 | |
Symbol 2177 EditableText | Uses:2175 | Used by:2179 |
Symbol 2178 Text | Uses:322 284 289 290 | Used by:2179 |
Symbol 2179 MovieClip {Page119} | Uses:221 2173 2174 2176 2177 2178 | |
Symbol 2180 Font | Used by:2182 | |
Symbol 2181 Graphic | Used by:2187 | |
Symbol 2182 EditableText | Uses:2180 | Used by:2187 |
Symbol 2183 Font | Used by:2185 | |
Symbol 2184 Graphic | Used by:2187 | |
Symbol 2185 EditableText | Uses:2183 | Used by:2187 |
Symbol 2186 Text | Uses:322 284 289 290 309 | Used by:2187 |
Symbol 2187 MovieClip {Page120} | Uses:221 2181 2182 2184 2185 2186 | |
Symbol 2188 Font | Used by:2190 | |
Symbol 2189 Graphic | Used by:2195 | |
Symbol 2190 EditableText | Uses:2188 | Used by:2195 |
Symbol 2191 Font | Used by:2193 | |
Symbol 2192 Graphic | Used by:2195 | |
Symbol 2193 EditableText | Uses:2191 | Used by:2195 |
Symbol 2194 Text | Uses:322 284 289 290 | Used by:2195 |
Symbol 2195 MovieClip {Page121} | Uses:221 2189 2190 2192 2193 2194 | |
Symbol 2196 Font | Used by:2198 | |
Symbol 2197 Graphic | Used by:2203 | |
Symbol 2198 EditableText | Uses:2196 | Used by:2203 |
Symbol 2199 Font | Used by:2201 | |
Symbol 2200 Graphic | Used by:2203 | |
Symbol 2201 EditableText | Uses:2199 | Used by:2203 |
Symbol 2202 Text | Uses:322 284 289 290 | Used by:2203 |
Symbol 2203 MovieClip {Page122} | Uses:221 2197 2198 2200 2201 2202 | |
Symbol 2204 Font | Used by:2206 | |
Symbol 2205 Graphic | Used by:2211 | |
Symbol 2206 EditableText | Uses:2204 | Used by:2211 |
Symbol 2207 Font | Used by:2209 | |
Symbol 2208 Graphic | Used by:2211 | |
Symbol 2209 EditableText | Uses:2207 | Used by:2211 |
Symbol 2210 Text | Uses:322 284 289 290 309 452 | Used by:2211 |
Symbol 2211 MovieClip {Page123} | Uses:221 2205 2206 2208 2209 2210 | |
Symbol 2212 Font | Used by:2214 | |
Symbol 2213 Graphic | Used by:2219 | |
Symbol 2214 EditableText | Uses:2212 | Used by:2219 |
Symbol 2215 Font | Used by:2217 | |
Symbol 2216 Graphic | Used by:2219 | |
Symbol 2217 EditableText | Uses:2215 | Used by:2219 |
Symbol 2218 Text | Uses:322 284 289 290 | Used by:2219 |
Symbol 2219 MovieClip {Page124} | Uses:221 2213 2214 2216 2217 2218 | |
Symbol 2220 Font | Used by:2222 | |
Symbol 2221 Graphic | Used by:2227 | |
Symbol 2222 EditableText | Uses:2220 | Used by:2227 |
Symbol 2223 Font | Used by:2225 | |
Symbol 2224 Graphic | Used by:2227 | |
Symbol 2225 EditableText | Uses:2223 | Used by:2227 |
Symbol 2226 Text | Uses:322 284 289 290 309 | Used by:2227 |
Symbol 2227 MovieClip {Page125} | Uses:221 2221 2222 2224 2225 2226 | |
Symbol 2228 Font | Used by:2230 | |
Symbol 2229 Graphic | Used by:2235 | |
Symbol 2230 EditableText | Uses:2228 | Used by:2235 |
Symbol 2231 Font | Used by:2233 | |
Symbol 2232 Graphic | Used by:2235 | |
Symbol 2233 EditableText | Uses:2231 | Used by:2235 |
Symbol 2234 Text | Uses:322 284 289 290 | Used by:2235 |
Symbol 2235 MovieClip {Page126} | Uses:221 2229 2230 2232 2233 2234 | |
Symbol 2236 Font | Used by:2238 | |
Symbol 2237 Graphic | Used by:2243 | |
Symbol 2238 EditableText | Uses:2236 | Used by:2243 |
Symbol 2239 Font | Used by:2241 | |
Symbol 2240 Graphic | Used by:2243 | |
Symbol 2241 EditableText | Uses:2239 | Used by:2243 |
Symbol 2242 Text | Uses:322 284 289 290 | Used by:2243 |
Symbol 2243 MovieClip {Page127} | Uses:221 2237 2238 2240 2241 2242 | |
Symbol 2244 Font | Used by:2246 | |
Symbol 2245 Graphic | Used by:2251 | |
Symbol 2246 EditableText | Uses:2244 | Used by:2251 |
Symbol 2247 Font | Used by:2249 | |
Symbol 2248 Graphic | Used by:2251 | |
Symbol 2249 EditableText | Uses:2247 | Used by:2251 |
Symbol 2250 Text | Uses:322 284 289 290 309 | Used by:2251 |
Symbol 2251 MovieClip {Page128} | Uses:221 2245 2246 2248 2249 2250 | |
Symbol 2252 Font | Used by:2254 | |
Symbol 2253 Graphic | Used by:2260 | |
Symbol 2254 EditableText | Uses:2252 | Used by:2260 |
Symbol 2255 Font | Used by:2257 | |
Symbol 2256 Graphic | Used by:2260 | |
Symbol 2257 EditableText | Uses:2255 | Used by:2260 |
Symbol 2258 Text | Uses:322 284 289 290 309 | Used by:2260 |
Symbol 2259 Text | Uses:309 | Used by:2260 |
Symbol 2260 MovieClip {Page129} | Uses:221 2253 2254 2256 2257 2258 2259 | |
Symbol 2261 Font | Used by:2263 | |
Symbol 2262 Graphic | Used by:2272 | |
Symbol 2263 EditableText | Uses:2261 | Used by:2272 |
Symbol 2264 Bitmap | Used by:2265 | |
Symbol 2265 Graphic | Uses:2264 | Used by:2272 |
Symbol 2266 Font | Used by:2268 | |
Symbol 2267 Graphic | Used by:2272 | |
Symbol 2268 EditableText | Uses:2266 | Used by:2272 |
Symbol 2269 Text | Uses:289 964 309 | Used by:2272 |
Symbol 2270 Graphic | Used by:2272 | |
Symbol 2271 Text | Uses:386 | Used by:2272 |
Symbol 2272 MovieClip {Page130} | Uses:221 2262 2263 2265 2267 2268 2269 2270 2271 | |
Symbol 2273 Font | Used by:2275 | |
Symbol 2274 Graphic | Used by:2278 | |
Symbol 2275 EditableText | Uses:2273 | Used by:2278 |
Symbol 2276 Bitmap | Used by:2277 | |
Symbol 2277 Graphic | Uses:2276 | Used by:2278 |
Symbol 2278 MovieClip {Page131} | Uses:221 2274 2275 2277 | |
Symbol 2279 Font | Used by:2281 | |
Symbol 2280 Graphic | Used by:2297 | |
Symbol 2281 EditableText | Uses:2279 | Used by:2297 |
Symbol 2282 Graphic | Used by:2297 | |
Symbol 2283 Font | Used by:2287 2315 2324 2422 2457 2485 2503 2520 2556 2579 2601 2628 2681 2707 2724 2858 3029 3093 3103 3124 3143 3180 3227 3235 3244 3261 3279 3413 | |
Symbol 2284 Font | Used by:2286 | |
Symbol 2285 Graphic | Used by:2297 | |
Symbol 2286 EditableText | Uses:2284 | Used by:2297 |
Symbol 2287 Text | Uses:2283 284 2288 330 329 328 2289 | Used by:2297 |
Symbol 2288 Font | Used by:2287 2290 2292 2485 2495 3093 3279 3291 3292 3300 3309 3329 | |
Symbol 2289 Font | Used by:2287 2292 2296 | |
Symbol 2290 Text | Uses:330 2288 | Used by:2297 |
Symbol 2291 Graphic | Used by:2297 | |
Symbol 2292 Text | Uses:330 329 328 2289 2288 | Used by:2297 |
Symbol 2293 Graphic | Used by:2297 | |
Symbol 2294 Font | Used by:2295 | |
Symbol 2295 Text | Uses:2294 | Used by:2297 |
Symbol 2296 Text | Uses:2289 | Used by:2297 |
Symbol 2297 MovieClip {Page132} | Uses:221 2280 2281 2282 2285 2286 2287 2290 2291 2292 2293 2295 2296 | |
Symbol 2298 Font | Used by:2300 | |
Symbol 2299 Graphic | Used by:2308 | |
Symbol 2300 EditableText | Uses:2298 | Used by:2308 |
Symbol 2301 Bitmap | Used by:2302 2472 2544 2589 3081 3249 | |
Symbol 2302 Graphic | Uses:2301 | Used by:2308 |
Symbol 2303 Font | Used by:2305 | |
Symbol 2304 Graphic | Used by:2308 | |
Symbol 2305 EditableText | Uses:2303 | Used by:2308 |
Symbol 2306 Text | Uses:284 2307 | Used by:2308 |
Symbol 2307 Font | Used by:2306 3253 | |
Symbol 2308 MovieClip {Page133} | Uses:221 2299 2300 2302 2304 2305 2306 | |
Symbol 2309 Font | Used by:2311 | |
Symbol 2310 Graphic | Used by:2317 | |
Symbol 2311 EditableText | Uses:2309 | Used by:2317 |
Symbol 2312 Font | Used by:2314 | |
Symbol 2313 Graphic | Used by:2317 | |
Symbol 2314 EditableText | Uses:2312 | Used by:2317 |
Symbol 2315 Text | Uses:2283 2316 284 289 330 | Used by:2317 |
Symbol 2316 Font | Used by:2315 2324 2422 2457 2485 2503 2520 2556 2579 2601 2628 2681 2707 2858 3001 3016 3029 3143 | |
Symbol 2317 MovieClip {Page134} | Uses:221 2310 2311 2313 2314 2315 | |
Symbol 2318 Font | Used by:2320 | |
Symbol 2319 Graphic | Used by:2326 | |
Symbol 2320 EditableText | Uses:2318 | Used by:2326 |
Symbol 2321 Font | Used by:2323 | |
Symbol 2322 Graphic | Used by:2326 | |
Symbol 2323 EditableText | Uses:2321 | Used by:2326 |
Symbol 2324 Text | Uses:2283 2316 284 290 615 289 330 | Used by:2326 |
Symbol 2325 Text | Uses:289 | Used by:2326 |
Symbol 2326 MovieClip {Page135} | Uses:221 2319 2320 2322 2323 2324 2325 | |
Symbol 2327 Font | Used by:2329 | |
Symbol 2328 Graphic | Used by:2335 | |
Symbol 2329 EditableText | Uses:2327 | Used by:2335 |
Symbol 2330 Font | Used by:2332 | |
Symbol 2331 Graphic | Used by:2335 | |
Symbol 2332 EditableText | Uses:2330 | Used by:2335 |
Symbol 2333 Text | Uses:289 284 | Used by:2335 |
Symbol 2334 Text | Uses:615 289 284 | Used by:2335 |
Symbol 2335 MovieClip {Page136} | Uses:221 2328 2329 2331 2332 2333 2334 | |
Symbol 2336 Font | Used by:2338 | |
Symbol 2337 Graphic | Used by:2344 | |
Symbol 2338 EditableText | Uses:2336 | Used by:2344 |
Symbol 2339 Font | Used by:2341 | |
Symbol 2340 Graphic | Used by:2344 | |
Symbol 2341 EditableText | Uses:2339 | Used by:2344 |
Symbol 2342 Text | Uses:289 284 309 | Used by:2344 |
Symbol 2343 Text | Uses:289 284 309 | Used by:2344 |
Symbol 2344 MovieClip {Page137} | Uses:221 2337 2338 2340 2341 2342 2343 | |
Symbol 2345 Font | Used by:2347 | |
Symbol 2346 Graphic | Used by:2353 | |
Symbol 2347 EditableText | Uses:2345 | Used by:2353 |
Symbol 2348 Font | Used by:2350 | |
Symbol 2349 Graphic | Used by:2353 | |
Symbol 2350 EditableText | Uses:2348 | Used by:2353 |
Symbol 2351 Text | Uses:289 284 309 | Used by:2353 |
Symbol 2352 Text | Uses:289 284 615 | Used by:2353 |
Symbol 2353 MovieClip {Page138} | Uses:221 2346 2347 2349 2350 2351 2352 | |
Symbol 2354 Font | Used by:2356 | |
Symbol 2355 Graphic | Used by:2362 | |
Symbol 2356 EditableText | Uses:2354 | Used by:2362 |
Symbol 2357 Font | Used by:2359 | |
Symbol 2358 Graphic | Used by:2362 | |
Symbol 2359 EditableText | Uses:2357 | Used by:2362 |
Symbol 2360 Text | Uses:289 284 330 329 309 | Used by:2362 |
Symbol 2361 Text | Uses:289 | Used by:2362 |
Symbol 2362 MovieClip {Page139} | Uses:221 2355 2356 2358 2359 2360 2361 | |
Symbol 2363 Font | Used by:2365 | |
Symbol 2364 Graphic | Used by:2371 | |
Symbol 2365 EditableText | Uses:2363 | Used by:2371 |
Symbol 2366 Font | Used by:2368 | |
Symbol 2367 Graphic | Used by:2371 | |
Symbol 2368 EditableText | Uses:2366 | Used by:2371 |
Symbol 2369 Text | Uses:309 284 289 615 | Used by:2371 |
Symbol 2370 Text | Uses:289 284 309 | Used by:2371 |
Symbol 2371 MovieClip {Page140} | Uses:221 2364 2365 2367 2368 2369 2370 | |
Symbol 2372 Font | Used by:2374 | |
Symbol 2373 Graphic | Used by:2380 | |
Symbol 2374 EditableText | Uses:2372 | Used by:2380 |
Symbol 2375 Font | Used by:2377 | |
Symbol 2376 Graphic | Used by:2380 | |
Symbol 2377 EditableText | Uses:2375 | Used by:2380 |
Symbol 2378 Text | Uses:289 284 | Used by:2380 |
Symbol 2379 Text | Uses:309 284 289 | Used by:2380 |
Symbol 2380 MovieClip {Page141} | Uses:221 2373 2374 2376 2377 2378 2379 | |
Symbol 2381 Font | Used by:2383 | |
Symbol 2382 Graphic | Used by:2389 | |
Symbol 2383 EditableText | Uses:2381 | Used by:2389 |
Symbol 2384 Font | Used by:2386 | |
Symbol 2385 Graphic | Used by:2389 | |
Symbol 2386 EditableText | Uses:2384 | Used by:2389 |
Symbol 2387 Text | Uses:289 284 | Used by:2389 |
Symbol 2388 Text | Uses:289 284 309 | Used by:2389 |
Symbol 2389 MovieClip {Page142} | Uses:221 2382 2383 2385 2386 2387 2388 | |
Symbol 2390 Font | Used by:2392 | |
Symbol 2391 Graphic | Used by:2398 | |
Symbol 2392 EditableText | Uses:2390 | Used by:2398 |
Symbol 2393 Font | Used by:2395 | |
Symbol 2394 Graphic | Used by:2398 | |
Symbol 2395 EditableText | Uses:2393 | Used by:2398 |
Symbol 2396 Text | Uses:289 284 615 | Used by:2398 |
Symbol 2397 Text | Uses:289 284 309 | Used by:2398 |
Symbol 2398 MovieClip {Page143} | Uses:221 2391 2392 2394 2395 2396 2397 | |
Symbol 2399 Font | Used by:2401 | |
Symbol 2400 Graphic | Used by:2407 | |
Symbol 2401 EditableText | Uses:2399 | Used by:2407 |
Symbol 2402 Font | Used by:2404 | |
Symbol 2403 Graphic | Used by:2407 | |
Symbol 2404 EditableText | Uses:2402 | Used by:2407 |
Symbol 2405 Text | Uses:289 284 309 | Used by:2407 |
Symbol 2406 Text | Uses:309 | Used by:2407 |
Symbol 2407 MovieClip {Page144} | Uses:221 2400 2401 2403 2404 2405 2406 | |
Symbol 2408 Font | Used by:2410 | |
Symbol 2409 Graphic | Used by:2415 | |
Symbol 2410 EditableText | Uses:2408 | Used by:2415 |
Symbol 2411 Font | Used by:2413 | |
Symbol 2412 Graphic | Used by:2415 | |
Symbol 2413 EditableText | Uses:2411 | Used by:2415 |
Symbol 2414 Text | Uses:289 284 615 | Used by:2415 |
Symbol 2415 MovieClip {Page145} | Uses:221 2409 2410 2412 2413 2414 | |
Symbol 2416 Font | Used by:2418 | |
Symbol 2417 Graphic | Used by:2424 | |
Symbol 2418 EditableText | Uses:2416 | Used by:2424 |
Symbol 2419 Font | Used by:2421 | |
Symbol 2420 Graphic | Used by:2424 | |
Symbol 2421 EditableText | Uses:2419 | Used by:2424 |
Symbol 2422 Text | Uses:2283 2316 284 615 289 | Used by:2424 |
Symbol 2423 Text | Uses:615 284 309 | Used by:2424 |
Symbol 2424 MovieClip {Page146} | Uses:221 2417 2418 2420 2421 2422 2423 | |
Symbol 2425 Font | Used by:2427 | |
Symbol 2426 Graphic | Used by:2433 | |
Symbol 2427 EditableText | Uses:2425 | Used by:2433 |
Symbol 2428 Font | Used by:2430 | |
Symbol 2429 Graphic | Used by:2433 | |
Symbol 2430 EditableText | Uses:2428 | Used by:2433 |
Symbol 2431 Text | Uses:289 284 615 | Used by:2433 |
Symbol 2432 Text | Uses:289 284 309 | Used by:2433 |
Symbol 2433 MovieClip {Page147} | Uses:221 2426 2427 2429 2430 2431 2432 | |
Symbol 2434 Font | Used by:2436 | |
Symbol 2435 Graphic | Used by:2442 | |
Symbol 2436 EditableText | Uses:2434 | Used by:2442 |
Symbol 2437 Font | Used by:2439 | |
Symbol 2438 Graphic | Used by:2442 | |
Symbol 2439 EditableText | Uses:2437 | Used by:2442 |
Symbol 2440 Text | Uses:289 284 615 | Used by:2442 |
Symbol 2441 Text | Uses:615 284 309 | Used by:2442 |
Symbol 2442 MovieClip {Page148} | Uses:221 2435 2436 2438 2439 2440 2441 | |
Symbol 2443 Font | Used by:2445 | |
Symbol 2444 Graphic | Used by:2450 | |
Symbol 2445 EditableText | Uses:2443 | Used by:2450 |
Symbol 2446 Font | Used by:2448 | |
Symbol 2447 Graphic | Used by:2450 | |
Symbol 2448 EditableText | Uses:2446 | Used by:2450 |
Symbol 2449 Text | Uses:289 | Used by:2450 |
Symbol 2450 MovieClip {Page149} | Uses:221 2444 2445 2447 2448 2449 | |
Symbol 2451 Font | Used by:2453 | |
Symbol 2452 Graphic | Used by:2459 | |
Symbol 2453 EditableText | Uses:2451 | Used by:2459 |
Symbol 2454 Font | Used by:2456 | |
Symbol 2455 Graphic | Used by:2459 | |
Symbol 2456 EditableText | Uses:2454 | Used by:2459 |
Symbol 2457 Text | Uses:2283 2316 2051 284 290 452 289 615 309 | Used by:2459 |
Symbol 2458 Text | Uses:309 | Used by:2459 |
Symbol 2459 MovieClip {Page150} | Uses:221 2452 2453 2455 2456 2457 2458 | |
Symbol 2460 Font | Used by:2462 | |
Symbol 2461 Graphic | Used by:2468 | |
Symbol 2462 EditableText | Uses:2460 | Used by:2468 |
Symbol 2463 Font | Used by:2465 | |
Symbol 2464 Graphic | Used by:2468 | |
Symbol 2465 EditableText | Uses:2463 | Used by:2468 |
Symbol 2466 Text | Uses:289 284 290 | Used by:2468 |
Symbol 2467 Text | Uses:289 | Used by:2468 |
Symbol 2468 MovieClip {Page151} | Uses:221 2461 2462 2464 2465 2466 2467 | |
Symbol 2469 Font | Used by:2471 | |
Symbol 2470 Graphic | Used by:2478 | |
Symbol 2471 EditableText | Uses:2469 | Used by:2478 |
Symbol 2472 Graphic | Uses:2301 | Used by:2478 |
Symbol 2473 Font | Used by:2475 | |
Symbol 2474 Graphic | Used by:2478 | |
Symbol 2475 EditableText | Uses:2473 | Used by:2478 |
Symbol 2476 Text | Uses:284 2477 | Used by:2478 |
Symbol 2477 Font | Used by:2476 2548 2593 3085 3134 | |
Symbol 2478 MovieClip {Page152} | Uses:221 2470 2471 2472 2474 2475 2476 | |
Symbol 2479 Font | Used by:2481 | |
Symbol 2480 Graphic | Used by:2488 | |
Symbol 2481 EditableText | Uses:2479 | Used by:2488 |
Symbol 2482 Font | Used by:2484 | |
Symbol 2483 Graphic | Used by:2488 | |
Symbol 2484 EditableText | Uses:2482 | Used by:2488 |
Symbol 2485 Text | Uses:2283 2316 284 615 2288 289 | Used by:2488 |
Symbol 2486 Text | Uses:289 615 772 2487 309 | Used by:2488 |
Symbol 2487 Font | Used by:2486 | |
Symbol 2488 MovieClip {Page153} | Uses:221 2480 2481 2483 2484 2485 2486 | |
Symbol 2489 Font | Used by:2491 | |
Symbol 2490 Graphic | Used by:2496 | |
Symbol 2491 EditableText | Uses:2489 | Used by:2496 |
Symbol 2492 Font | Used by:2494 | |
Symbol 2493 Graphic | Used by:2496 | |
Symbol 2494 EditableText | Uses:2492 | Used by:2496 |
Symbol 2495 Text | Uses:289 284 615 2288 | Used by:2496 |
Symbol 2496 MovieClip {Page154} | Uses:221 2490 2491 2493 2494 2495 | |
Symbol 2497 Font | Used by:2499 | |
Symbol 2498 Graphic | Used by:2505 | |
Symbol 2499 EditableText | Uses:2497 | Used by:2505 |
Symbol 2500 Font | Used by:2502 | |
Symbol 2501 Graphic | Used by:2505 | |
Symbol 2502 EditableText | Uses:2500 | Used by:2505 |
Symbol 2503 Text | Uses:2283 2316 284 289 330 615 290 | Used by:2505 |
Symbol 2504 Text | Uses:289 | Used by:2505 |
Symbol 2505 MovieClip {Page155} | Uses:221 2498 2499 2501 2502 2503 2504 | |
Symbol 2506 Font | Used by:2508 | |
Symbol 2507 Graphic | Used by:2513 | |
Symbol 2508 EditableText | Uses:2506 | Used by:2513 |
Symbol 2509 Font | Used by:2511 | |
Symbol 2510 Graphic | Used by:2513 | |
Symbol 2511 EditableText | Uses:2509 | Used by:2513 |
Symbol 2512 Text | Uses:309 329 772 289 284 | Used by:2513 |
Symbol 2513 MovieClip {Page156} | Uses:221 2507 2508 2510 2511 2512 | |
Symbol 2514 Font | Used by:2516 | |
Symbol 2515 Graphic | Used by:2522 | |
Symbol 2516 EditableText | Uses:2514 | Used by:2522 |
Symbol 2517 Font | Used by:2519 | |
Symbol 2518 Graphic | Used by:2522 | |
Symbol 2519 EditableText | Uses:2517 | Used by:2522 |
Symbol 2520 Text | Uses:2283 2316 2051 284 289 330 290 | Used by:2522 |
Symbol 2521 Text | Uses:289 284 309 452 | Used by:2522 |
Symbol 2522 MovieClip {Page157} | Uses:221 2515 2516 2518 2519 2520 2521 | |
Symbol 2523 Font | Used by:2525 | |
Symbol 2524 Graphic | Used by:2532 | |
Symbol 2525 EditableText | Uses:2523 | Used by:2532 |
Symbol 2526 Font | Used by:2528 | |
Symbol 2527 Graphic | Used by:2532 | |
Symbol 2528 EditableText | Uses:2526 | Used by:2532 |
Symbol 2529 Text | Uses:309 452 284 289 290 2530 | Used by:2532 |
Symbol 2530 Font | Used by:2529 2637 2646 2655 2707 2716 3227 3235 3261 | |
Symbol 2531 Text | Uses:309 772 | Used by:2532 |
Symbol 2532 MovieClip {Page158} | Uses:221 2524 2525 2527 2528 2529 2531 | |
Symbol 2533 Font | Used by:2535 | |
Symbol 2534 Graphic | Used by:2540 | |
Symbol 2535 EditableText | Uses:2533 | Used by:2540 |
Symbol 2536 Font | Used by:2538 | |
Symbol 2537 Graphic | Used by:2540 | |
Symbol 2538 EditableText | Uses:2536 | Used by:2540 |
Symbol 2539 Text | Uses:289 | Used by:2540 |
Symbol 2540 MovieClip {Page159} | Uses:221 2534 2535 2537 2538 2539 | |
Symbol 2541 Font | Used by:2543 | |
Symbol 2542 Graphic | Used by:2549 | |
Symbol 2543 EditableText | Uses:2541 | Used by:2549 |
Symbol 2544 Graphic | Uses:2301 | Used by:2549 |
Symbol 2545 Font | Used by:2547 | |
Symbol 2546 Graphic | Used by:2549 | |
Symbol 2547 EditableText | Uses:2545 | Used by:2549 |
Symbol 2548 Text | Uses:284 2477 | Used by:2549 |
Symbol 2549 MovieClip {Page160} | Uses:221 2542 2543 2544 2546 2547 2548 | |
Symbol 2550 Font | Used by:2552 | |
Symbol 2551 Graphic | Used by:2558 | |
Symbol 2552 EditableText | Uses:2550 | Used by:2558 |
Symbol 2553 Font | Used by:2555 | |
Symbol 2554 Graphic | Used by:2558 | |
Symbol 2555 EditableText | Uses:2553 | Used by:2558 |
Symbol 2556 Text | Uses:2283 2316 2051 284 289 290 | Used by:2558 |
Symbol 2557 Text | Uses:289 | Used by:2558 |
Symbol 2558 MovieClip {Page161} | Uses:221 2551 2552 2554 2555 2556 2557 | |
Symbol 2559 Font | Used by:2561 | |
Symbol 2560 Graphic | Used by:2566 | |
Symbol 2561 EditableText | Uses:2559 | Used by:2566 |
Symbol 2562 Font | Used by:2564 | |
Symbol 2563 Graphic | Used by:2566 | |
Symbol 2564 EditableText | Uses:2562 | Used by:2566 |
Symbol 2565 Text | Uses:289 284 615 | Used by:2566 |
Symbol 2566 MovieClip {Page162} | Uses:221 2560 2561 2563 2564 2565 | |
Symbol 2567 Font | Used by:2569 | |
Symbol 2568 Graphic | Used by:2585 | |
Symbol 2569 EditableText | Uses:2567 | Used by:2585 |
Symbol 2570 Bitmap | Used by:2571 | |
Symbol 2571 Graphic | Uses:2570 | Used by:2585 |
Symbol 2572 Graphic | Used by:2585 | |
Symbol 2573 Graphic | Used by:2585 | |
Symbol 2574 Graphic | Used by:2585 | |
Symbol 2575 Font | Used by:2579 | |
Symbol 2576 Font | Used by:2578 | |
Symbol 2577 Graphic | Used by:2585 | |
Symbol 2578 EditableText | Uses:2576 | Used by:2585 |
Symbol 2579 Text | Uses:2575 284 2316 2051 2283 2580 1047 2581 2582 2583 2584 | Used by:2585 |
Symbol 2580 Font | Used by:2579 3384 | |
Symbol 2581 Font | Used by:2579 | |
Symbol 2582 Font | Used by:2579 | |
Symbol 2583 Font | Used by:2579 | |
Symbol 2584 Font | Used by:2579 | |
Symbol 2585 MovieClip {Page163} | Uses:221 2568 2569 2571 2572 2573 2574 2577 2578 2579 | |
Symbol 2586 Font | Used by:2588 | |
Symbol 2587 Graphic | Used by:2594 | |
Symbol 2588 EditableText | Uses:2586 | Used by:2594 |
Symbol 2589 Graphic | Uses:2301 | Used by:2594 |
Symbol 2590 Font | Used by:2592 | |
Symbol 2591 Graphic | Used by:2594 | |
Symbol 2592 EditableText | Uses:2590 | Used by:2594 |
Symbol 2593 Text | Uses:284 2477 | Used by:2594 |
Symbol 2594 MovieClip {Page164} | Uses:221 2587 2588 2589 2591 2592 2593 | |
Symbol 2595 Font | Used by:2597 | |
Symbol 2596 Graphic | Used by:2604 | |
Symbol 2597 EditableText | Uses:2595 | Used by:2604 |
Symbol 2598 Font | Used by:2600 | |
Symbol 2599 Graphic | Used by:2604 | |
Symbol 2600 EditableText | Uses:2598 | Used by:2604 |
Symbol 2601 Text | Uses:2283 2316 2051 284 289 290 616 309 903 | Used by:2604 |
Symbol 2602 Text | Uses:616 329 652 2603 | Used by:2604 |
Symbol 2603 Font | Used by:2602 | |
Symbol 2604 MovieClip {Page165} | Uses:221 2596 2597 2599 2600 2601 2602 | |
Symbol 2605 Font | Used by:2607 | |
Symbol 2606 Graphic | Used by:2613 | |
Symbol 2607 EditableText | Uses:2605 | Used by:2613 |
Symbol 2608 Font | Used by:2610 | |
Symbol 2609 Graphic | Used by:2613 | |
Symbol 2610 EditableText | Uses:2608 | Used by:2613 |
Symbol 2611 Text | Uses:309 452 284 289 290 | Used by:2613 |
Symbol 2612 Text | Uses:289 284 309 452 | Used by:2613 |
Symbol 2613 MovieClip {Page166} | Uses:221 2606 2607 2609 2610 2611 2612 | |
Symbol 2614 Font | Used by:2616 | |
Symbol 2615 Graphic | Used by:2621 | |
Symbol 2616 EditableText | Uses:2614 | Used by:2621 |
Symbol 2617 Font | Used by:2619 | |
Symbol 2618 Graphic | Used by:2621 | |
Symbol 2619 EditableText | Uses:2617 | Used by:2621 |
Symbol 2620 Text | Uses:290 289 284 615 | Used by:2621 |
Symbol 2621 MovieClip {Page167} | Uses:221 2615 2616 2618 2619 2620 | |
Symbol 2622 Font | Used by:2624 | |
Symbol 2623 Graphic | Used by:2630 | |
Symbol 2624 EditableText | Uses:2622 | Used by:2630 |
Symbol 2625 Font | Used by:2627 | |
Symbol 2626 Graphic | Used by:2630 | |
Symbol 2627 EditableText | Uses:2625 | Used by:2630 |
Symbol 2628 Text | Uses:2283 284 2316 2051 289 290 | Used by:2630 |
Symbol 2629 Text | Uses:289 284 309 | Used by:2630 |
Symbol 2630 MovieClip {Page168} | Uses:221 2623 2624 2626 2627 2628 2629 | |
Symbol 2631 Font | Used by:2633 | |
Symbol 2632 Graphic | Used by:2639 | |
Symbol 2633 EditableText | Uses:2631 | Used by:2639 |
Symbol 2634 Font | Used by:2636 | |
Symbol 2635 Graphic | Used by:2639 | |
Symbol 2636 EditableText | Uses:2634 | Used by:2639 |
Symbol 2637 Text | Uses:289 284 2530 | Used by:2639 |
Symbol 2638 Text | Uses:289 | Used by:2639 |
Symbol 2639 MovieClip {Page169} | Uses:221 2632 2633 2635 2636 2637 2638 | |
Symbol 2640 Font | Used by:2642 | |
Symbol 2641 Graphic | Used by:2648 | |
Symbol 2642 EditableText | Uses:2640 | Used by:2648 |
Symbol 2643 Font | Used by:2645 | |
Symbol 2644 Graphic | Used by:2648 | |
Symbol 2645 EditableText | Uses:2643 | Used by:2648 |
Symbol 2646 Text | Uses:289 615 2530 284 | Used by:2648 |
Symbol 2647 Text | Uses:289 | Used by:2648 |
Symbol 2648 MovieClip {Page170} | Uses:221 2641 2642 2644 2645 2646 2647 | |
Symbol 2649 Font | Used by:2651 | |
Symbol 2650 Graphic | Used by:2657 | |
Symbol 2651 EditableText | Uses:2649 | Used by:2657 |
Symbol 2652 Font | Used by:2654 | |
Symbol 2653 Graphic | Used by:2657 | |
Symbol 2654 EditableText | Uses:2652 | Used by:2657 |
Symbol 2655 Text | Uses:289 284 2530 615 | Used by:2657 |
Symbol 2656 Text | Uses:284 289 | Used by:2657 |
Symbol 2657 MovieClip {Page171} | Uses:221 2650 2651 2653 2654 2655 2656 | |
Symbol 2658 Font | Used by:2660 | |
Symbol 2659 Graphic | Used by:2666 | |
Symbol 2660 EditableText | Uses:2658 | Used by:2666 |
Symbol 2661 Font | Used by:2663 | |
Symbol 2662 Graphic | Used by:2666 | |
Symbol 2663 EditableText | Uses:2661 | Used by:2666 |
Symbol 2664 Text | Uses:289 284 | Used by:2666 |
Symbol 2665 Text | Uses:289 284 | Used by:2666 |
Symbol 2666 MovieClip {Page172} | Uses:221 2659 2660 2662 2663 2664 2665 | |
Symbol 2667 Font | Used by:2669 | |
Symbol 2668 Graphic | Used by:2674 | |
Symbol 2669 EditableText | Uses:2667 | Used by:2674 |
Symbol 2670 Font | Used by:2672 | |
Symbol 2671 Graphic | Used by:2674 | |
Symbol 2672 EditableText | Uses:2670 | Used by:2674 |
Symbol 2673 Text | Uses:289 615 284 330 | Used by:2674 |
Symbol 2674 MovieClip {Page173} | Uses:221 2668 2669 2671 2672 2673 | |
Symbol 2675 Font | Used by:2677 | |
Symbol 2676 Graphic | Used by:2683 | |
Symbol 2677 EditableText | Uses:2675 | Used by:2683 |
Symbol 2678 Font | Used by:2680 | |
Symbol 2679 Graphic | Used by:2683 | |
Symbol 2680 EditableText | Uses:2678 | Used by:2683 |
Symbol 2681 Text | Uses:2283 2316 2051 284 289 309 290 615 | Used by:2683 |
Symbol 2682 Text | Uses:284 289 | Used by:2683 |
Symbol 2683 MovieClip {Page174} | Uses:221 2676 2677 2679 2680 2681 2682 | |
Symbol 2684 Font | Used by:2686 | |
Symbol 2685 Graphic | Used by:2692 | |
Symbol 2686 EditableText | Uses:2684 | Used by:2692 |
Symbol 2687 Font | Used by:2689 | |
Symbol 2688 Graphic | Used by:2692 | |
Symbol 2689 EditableText | Uses:2687 | Used by:2692 |
Symbol 2690 Text | Uses:289 284 330 309 | Used by:2692 |
Symbol 2691 Text | Uses:289 309 | Used by:2692 |
Symbol 2692 MovieClip {Page175} | Uses:221 2685 2686 2688 2689 2690 2691 | |
Symbol 2693 Font | Used by:2695 | |
Symbol 2694 Graphic | Used by:2700 | |
Symbol 2695 EditableText | Uses:2693 | Used by:2700 |
Symbol 2696 Font | Used by:2698 | |
Symbol 2697 Graphic | Used by:2700 | |
Symbol 2698 EditableText | Uses:2696 | Used by:2700 |
Symbol 2699 Text | Uses:289 615 284 290 | Used by:2700 |
Symbol 2700 MovieClip {Page176} | Uses:221 2694 2695 2697 2698 2699 | |
Symbol 2701 Font | Used by:2703 | |
Symbol 2702 Graphic | Used by:2709 | |
Symbol 2703 EditableText | Uses:2701 | Used by:2709 |
Symbol 2704 Font | Used by:2706 | |
Symbol 2705 Graphic | Used by:2709 | |
Symbol 2706 EditableText | Uses:2704 | Used by:2709 |
Symbol 2707 Text | Uses:2283 2316 2051 284 289 2530 | Used by:2709 |
Symbol 2708 Text | Uses:289 | Used by:2709 |
Symbol 2709 MovieClip {Page177} | Uses:221 2702 2703 2705 2706 2707 2708 | |
Symbol 2710 Font | Used by:2712 | |
Symbol 2711 Graphic | Used by:2717 | |
Symbol 2712 EditableText | Uses:2710 | Used by:2717 |
Symbol 2713 Font | Used by:2715 | |
Symbol 2714 Graphic | Used by:2717 | |
Symbol 2715 EditableText | Uses:2713 | Used by:2717 |
Symbol 2716 Text | Uses:289 2530 284 | Used by:2717 |
Symbol 2717 MovieClip {Page178} | Uses:221 2711 2712 2714 2715 2716 | |
Symbol 2718 Font | Used by:2720 | |
Symbol 2719 Graphic | Used by:2726 | |
Symbol 2720 EditableText | Uses:2718 | Used by:2726 |
Symbol 2721 Font | Used by:2723 | |
Symbol 2722 Graphic | Used by:2726 | |
Symbol 2723 EditableText | Uses:2721 | Used by:2726 |
Symbol 2724 Text | Uses:2283 284 2052 903 289 386 | Used by:2726 |
Symbol 2725 Text | Uses:289 386 | Used by:2726 |
Symbol 2726 MovieClip {Page179} | Uses:221 2719 2720 2722 2723 2724 2725 | |
Symbol 2727 Font | Used by:2729 | |
Symbol 2728 Graphic | Used by:2735 | |
Symbol 2729 EditableText | Uses:2727 | Used by:2735 |
Symbol 2730 Font | Used by:2732 | |
Symbol 2731 Graphic | Used by:2735 | |
Symbol 2732 EditableText | Uses:2730 | Used by:2735 |
Symbol 2733 Text | Uses:289 284 | Used by:2735 |
Symbol 2734 Text | Uses:289 284 309 | Used by:2735 |
Symbol 2735 MovieClip {Page180} | Uses:221 2728 2729 2731 2732 2733 2734 | |
Symbol 2736 Font | Used by:2738 | |
Symbol 2737 Graphic | Used by:2744 | |
Symbol 2738 EditableText | Uses:2736 | Used by:2744 |
Symbol 2739 Font | Used by:2741 | |
Symbol 2740 Graphic | Used by:2744 | |
Symbol 2741 EditableText | Uses:2739 | Used by:2744 |
Symbol 2742 Text | Uses:289 284 | Used by:2744 |
Symbol 2743 Text | Uses:289 284 309 | Used by:2744 |
Symbol 2744 MovieClip {Page181} | Uses:221 2737 2738 2740 2741 2742 2743 | |
Symbol 2745 Font | Used by:2747 | |
Symbol 2746 Graphic | Used by:2753 | |
Symbol 2747 EditableText | Uses:2745 | Used by:2753 |
Symbol 2748 Font | Used by:2750 | |
Symbol 2749 Graphic | Used by:2753 | |
Symbol 2750 EditableText | Uses:2748 | Used by:2753 |
Symbol 2751 Text | Uses:289 284 | Used by:2753 |
Symbol 2752 Text | Uses:284 309 | Used by:2753 |
Symbol 2753 MovieClip {Page182} | Uses:221 2746 2747 2749 2750 2751 2752 | |
Symbol 2754 Font | Used by:2756 | |
Symbol 2755 Graphic | Used by:2762 | |
Symbol 2756 EditableText | Uses:2754 | Used by:2762 |
Symbol 2757 Font | Used by:2759 | |
Symbol 2758 Graphic | Used by:2762 | |
Symbol 2759 EditableText | Uses:2757 | Used by:2762 |
Symbol 2760 Text | Uses:309 284 289 | Used by:2762 |
Symbol 2761 Text | Uses:284 289 | Used by:2762 |
Symbol 2762 MovieClip {Page183} | Uses:221 2755 2756 2758 2759 2760 2761 | |
Symbol 2763 Font | Used by:2765 | |
Symbol 2764 Graphic | Used by:2771 | |
Symbol 2765 EditableText | Uses:2763 | Used by:2771 |
Symbol 2766 Font | Used by:2768 | |
Symbol 2767 Graphic | Used by:2771 | |
Symbol 2768 EditableText | Uses:2766 | Used by:2771 |
Symbol 2769 Text | Uses:289 284 | Used by:2771 |
Symbol 2770 Text | Uses:289 284 | Used by:2771 |
Symbol 2771 MovieClip {Page184} | Uses:221 2764 2765 2767 2768 2769 2770 | |
Symbol 2772 Font | Used by:2774 | |
Symbol 2773 Graphic | Used by:2780 | |
Symbol 2774 EditableText | Uses:2772 | Used by:2780 |
Symbol 2775 Font | Used by:2777 | |
Symbol 2776 Graphic | Used by:2780 | |
Symbol 2777 EditableText | Uses:2775 | Used by:2780 |
Symbol 2778 Text | Uses:289 284 615 330 | Used by:2780 |
Symbol 2779 Text | Uses:289 | Used by:2780 |
Symbol 2780 MovieClip {Page185} | Uses:221 2773 2774 2776 2777 2778 2779 | |
Symbol 2781 Font | Used by:2783 | |
Symbol 2782 Graphic | Used by:2789 | |
Symbol 2783 EditableText | Uses:2781 | Used by:2789 |
Symbol 2784 Font | Used by:2786 | |
Symbol 2785 Graphic | Used by:2789 | |
Symbol 2786 EditableText | Uses:2784 | Used by:2789 |
Symbol 2787 Text | Uses:289 284 | Used by:2789 |
Symbol 2788 Text | Uses:289 | Used by:2789 |
Symbol 2789 MovieClip {Page186} | Uses:221 2782 2783 2785 2786 2787 2788 | |
Symbol 2790 Font | Used by:2792 | |
Symbol 2791 Graphic | Used by:2798 | |
Symbol 2792 EditableText | Uses:2790 | Used by:2798 |
Symbol 2793 Font | Used by:2795 | |
Symbol 2794 Graphic | Used by:2798 | |
Symbol 2795 EditableText | Uses:2793 | Used by:2798 |
Symbol 2796 Text | Uses:289 284 386 615 | Used by:2798 |
Symbol 2797 Text | Uses:289 | Used by:2798 |
Symbol 2798 MovieClip {Page187} | Uses:221 2791 2792 2794 2795 2796 2797 | |
Symbol 2799 Font | Used by:2801 | |
Symbol 2800 Graphic | Used by:2807 | |
Symbol 2801 EditableText | Uses:2799 | Used by:2807 |
Symbol 2802 Font | Used by:2804 | |
Symbol 2803 Graphic | Used by:2807 | |
Symbol 2804 EditableText | Uses:2802 | Used by:2807 |
Symbol 2805 Text | Uses:289 284 386 309 | Used by:2807 |
Symbol 2806 Text | Uses:309 284 289 | Used by:2807 |
Symbol 2807 MovieClip {Page188} | Uses:221 2800 2801 2803 2804 2805 2806 | |
Symbol 2808 Font | Used by:2810 | |
Symbol 2809 Graphic | Used by:2816 | |
Symbol 2810 EditableText | Uses:2808 | Used by:2816 |
Symbol 2811 Font | Used by:2813 | |
Symbol 2812 Graphic | Used by:2816 | |
Symbol 2813 EditableText | Uses:2811 | Used by:2816 |
Symbol 2814 Text | Uses:289 284 290 | Used by:2816 |
Symbol 2815 Text | Uses:289 284 309 | Used by:2816 |
Symbol 2816 MovieClip {Page189} | Uses:221 2809 2810 2812 2813 2814 2815 | |
Symbol 2817 Font | Used by:2819 | |
Symbol 2818 Graphic | Used by:2825 | |
Symbol 2819 EditableText | Uses:2817 | Used by:2825 |
Symbol 2820 Font | Used by:2822 | |
Symbol 2821 Graphic | Used by:2825 | |
Symbol 2822 EditableText | Uses:2820 | Used by:2825 |
Symbol 2823 Text | Uses:289 284 615 330 | Used by:2825 |
Symbol 2824 Text | Uses:309 329 | Used by:2825 |
Symbol 2825 MovieClip {Page190} | Uses:221 2818 2819 2821 2822 2823 2824 | |
Symbol 2826 Font | Used by:2828 | |
Symbol 2827 Graphic | Used by:2834 | |
Symbol 2828 EditableText | Uses:2826 | Used by:2834 |
Symbol 2829 Font | Used by:2831 | |
Symbol 2830 Graphic | Used by:2834 | |
Symbol 2831 EditableText | Uses:2829 | Used by:2834 |
Symbol 2832 Text | Uses:289 284 330 309 329 615 | Used by:2834 |
Symbol 2833 Text | Uses:289 284 | Used by:2834 |
Symbol 2834 MovieClip {Page191} | Uses:221 2827 2828 2830 2831 2832 2833 | |
Symbol 2835 Font | Used by:2837 | |
Symbol 2836 Graphic | Used by:2843 | |
Symbol 2837 EditableText | Uses:2835 | Used by:2843 |
Symbol 2838 Font | Used by:2840 | |
Symbol 2839 Graphic | Used by:2843 | |
Symbol 2840 EditableText | Uses:2838 | Used by:2843 |
Symbol 2841 Text | Uses:289 284 | Used by:2843 |
Symbol 2842 Text | Uses:289 284 | Used by:2843 |
Symbol 2843 MovieClip {Page192} | Uses:221 2836 2837 2839 2840 2841 2842 | |
Symbol 2844 Font | Used by:2846 | |
Symbol 2845 Graphic | Used by:2851 | |
Symbol 2846 EditableText | Uses:2844 | Used by:2851 |
Symbol 2847 Font | Used by:2849 | |
Symbol 2848 Graphic | Used by:2851 | |
Symbol 2849 EditableText | Uses:2847 | Used by:2851 |
Symbol 2850 Text | Uses:289 284 | Used by:2851 |
Symbol 2851 MovieClip {Page193} | Uses:221 2845 2846 2848 2849 2850 | |
Symbol 2852 Font | Used by:2854 | |
Symbol 2853 Graphic | Used by:2860 | |
Symbol 2854 EditableText | Uses:2852 | Used by:2860 |
Symbol 2855 Font | Used by:2857 | |
Symbol 2856 Graphic | Used by:2860 | |
Symbol 2857 EditableText | Uses:2855 | Used by:2860 |
Symbol 2858 Text | Uses:2283 2316 903 284 289 290 309 452 | Used by:2860 |
Symbol 2859 Text | Uses:309 452 | Used by:2860 |
Symbol 2860 MovieClip {Page194} | Uses:221 2853 2854 2856 2857 2858 2859 | |
Symbol 2861 Font | Used by:2863 | |
Symbol 2862 Graphic | Used by:2869 | |
Symbol 2863 EditableText | Uses:2861 | Used by:2869 |
Symbol 2864 Font | Used by:2866 | |
Symbol 2865 Graphic | Used by:2869 | |
Symbol 2866 EditableText | Uses:2864 | Used by:2869 |
Symbol 2867 Text | Uses:289 284 290 615 | Used by:2869 |
Symbol 2868 Text | Uses:289 284 309 | Used by:2869 |
Symbol 2869 MovieClip {Page195} | Uses:221 2862 2863 2865 2866 2867 2868 | |
Symbol 2870 Font | Used by:2872 | |
Symbol 2871 Graphic | Used by:2878 | |
Symbol 2872 EditableText | Uses:2870 | Used by:2878 |
Symbol 2873 Font | Used by:2875 | |
Symbol 2874 Graphic | Used by:2878 | |
Symbol 2875 EditableText | Uses:2873 | Used by:2878 |
Symbol 2876 Text | Uses:289 386 290 284 309 | Used by:2878 |
Symbol 2877 Text | Uses:289 | Used by:2878 |
Symbol 2878 MovieClip {Page196} | Uses:221 2871 2872 2874 2875 2876 2877 | |
Symbol 2879 Font | Used by:2881 | |
Symbol 2880 Graphic | Used by:2887 | |
Symbol 2881 EditableText | Uses:2879 | Used by:2887 |
Symbol 2882 Font | Used by:2884 | |
Symbol 2883 Graphic | Used by:2887 | |
Symbol 2884 EditableText | Uses:2882 | Used by:2887 |
Symbol 2885 Text | Uses:289 284 290 386 309 | Used by:2887 |
Symbol 2886 Text | Uses:309 452 | Used by:2887 |
Symbol 2887 MovieClip {Page197} | Uses:221 2880 2881 2883 2884 2885 2886 | |
Symbol 2888 Font | Used by:2890 | |
Symbol 2889 Graphic | Used by:2896 | |
Symbol 2890 EditableText | Uses:2888 | Used by:2896 |
Symbol 2891 Font | Used by:2893 | |
Symbol 2892 Graphic | Used by:2896 | |
Symbol 2893 EditableText | Uses:2891 | Used by:2896 |
Symbol 2894 Text | Uses:289 284 615 290 | Used by:2896 |
Symbol 2895 Text | Uses:289 284 309 | Used by:2896 |
Symbol 2896 MovieClip {Page198} | Uses:221 2889 2890 2892 2893 2894 2895 | |
Symbol 2897 Font | Used by:2899 | |
Symbol 2898 Graphic | Used by:2905 | |
Symbol 2899 EditableText | Uses:2897 | Used by:2905 |
Symbol 2900 Font | Used by:2902 | |
Symbol 2901 Graphic | Used by:2905 | |
Symbol 2902 EditableText | Uses:2900 | Used by:2905 |
Symbol 2903 Text | Uses:289 284 290 | Used by:2905 |
Symbol 2904 Text | Uses:289 284 309 | Used by:2905 |
Symbol 2905 MovieClip {Page199} | Uses:221 2898 2899 2901 2902 2903 2904 | |
Symbol 2906 Font | Used by:2908 | |
Symbol 2907 Graphic | Used by:2914 | |
Symbol 2908 EditableText | Uses:2906 | Used by:2914 |
Symbol 2909 Font | Used by:2911 | |
Symbol 2910 Graphic | Used by:2914 | |
Symbol 2911 EditableText | Uses:2909 | Used by:2914 |
Symbol 2912 Text | Uses:289 284 290 309 452 | Used by:2914 |
Symbol 2913 Text | Uses:309 | Used by:2914 |
Symbol 2914 MovieClip {Page200} | Uses:221 2907 2908 2910 2911 2912 2913 | |
Symbol 2915 Font | Used by:2917 | |
Symbol 2916 Graphic | Used by:2924 | |
Symbol 2917 EditableText | Uses:2915 | Used by:2924 |
Symbol 2918 Font | Used by:2920 | |
Symbol 2919 Graphic | Used by:2924 | |
Symbol 2920 EditableText | Uses:2918 | Used by:2924 |
Symbol 2921 Text | Uses:289 284 615 2922 309 452 290 328 | Used by:2924 |
Symbol 2922 Font | Used by:2921 2940 3040 | |
Symbol 2923 Text | Uses:289 284 309 | Used by:2924 |
Symbol 2924 MovieClip {Page201} | Uses:221 2916 2917 2919 2920 2921 2923 | |
Symbol 2925 Font | Used by:2927 | |
Symbol 2926 Graphic | Used by:2933 | |
Symbol 2927 EditableText | Uses:2925 | Used by:2933 |
Symbol 2928 Font | Used by:2930 | |
Symbol 2929 Graphic | Used by:2933 | |
Symbol 2930 EditableText | Uses:2928 | Used by:2933 |
Symbol 2931 Text | Uses:289 290 284 | Used by:2933 |
Symbol 2932 Text | Uses:289 290 | Used by:2933 |
Symbol 2933 MovieClip {Page202} | Uses:221 2926 2927 2929 2930 2931 2932 | |
Symbol 2934 Font | Used by:2936 | |
Symbol 2935 Graphic | Used by:2942 | |
Symbol 2936 EditableText | Uses:2934 | Used by:2942 |
Symbol 2937 Font | Used by:2939 | |
Symbol 2938 Graphic | Used by:2942 | |
Symbol 2939 EditableText | Uses:2937 | Used by:2942 |
Symbol 2940 Text | Uses:289 284 290 386 615 2922 309 452 | Used by:2942 |
Symbol 2941 Text | Uses:309 | Used by:2942 |
Symbol 2942 MovieClip {Page203} | Uses:221 2935 2936 2938 2939 2940 2941 | |
Symbol 2943 Font | Used by:2945 | |
Symbol 2944 Graphic | Used by:2951 | |
Symbol 2945 EditableText | Uses:2943 | Used by:2951 |
Symbol 2946 Font | Used by:2948 | |
Symbol 2947 Graphic | Used by:2951 | |
Symbol 2948 EditableText | Uses:2946 | Used by:2951 |
Symbol 2949 Text | Uses:289 290 284 | Used by:2951 |
Symbol 2950 Text | Uses:309 452 | Used by:2951 |
Symbol 2951 MovieClip {Page204} | Uses:221 2944 2945 2947 2948 2949 2950 | |
Symbol 2952 Font | Used by:2954 | |
Symbol 2953 Graphic | Used by:2963 | |
Symbol 2954 EditableText | Uses:2952 | Used by:2963 |
Symbol 2955 Graphic | Used by:2963 | |
Symbol 2956 Font | Used by:2958 | |
Symbol 2957 Graphic | Used by:2963 | |
Symbol 2958 EditableText | Uses:2956 | Used by:2963 |
Symbol 2959 Text | Uses:290 289 284 309 452 | Used by:2963 |
Symbol 2960 Text | Uses:289 284 309 452 | Used by:2963 |
Symbol 2961 Graphic | Used by:2963 | |
Symbol 2962 Text | Uses:289 | Used by:2963 |
Symbol 2963 MovieClip {Page205} | Uses:221 2953 2954 2955 2957 2958 2959 2960 2961 2962 | |
Symbol 2964 Font | Used by:2966 | |
Symbol 2965 Graphic | Used by:2972 | |
Symbol 2966 EditableText | Uses:2964 | Used by:2972 |
Symbol 2967 Font | Used by:2969 | |
Symbol 2968 Graphic | Used by:2972 | |
Symbol 2969 EditableText | Uses:2967 | Used by:2972 |
Symbol 2970 Text | Uses:289 290 284 309 452 | Used by:2972 |
Symbol 2971 Text | Uses:284 289 | Used by:2972 |
Symbol 2972 MovieClip {Page206} | Uses:221 2965 2966 2968 2969 2970 2971 | |
Symbol 2973 Font | Used by:2975 | |
Symbol 2974 Graphic | Used by:2981 | |
Symbol 2975 EditableText | Uses:2973 | Used by:2981 |
Symbol 2976 Font | Used by:2978 | |
Symbol 2977 Graphic | Used by:2981 | |
Symbol 2978 EditableText | Uses:2976 | Used by:2981 |
Symbol 2979 Text | Uses:289 290 284 | Used by:2981 |
Symbol 2980 Text | Uses:289 615 284 290 | Used by:2981 |
Symbol 2981 MovieClip {Page207} | Uses:221 2974 2975 2977 2978 2979 2980 | |
Symbol 2982 Font | Used by:2984 | |
Symbol 2983 Graphic | Used by:2993 | |
Symbol 2984 EditableText | Uses:2982 | Used by:2993 |
Symbol 2985 Graphic | Used by:2993 | |
Symbol 2986 Font | Used by:2988 | |
Symbol 2987 Graphic | Used by:2993 | |
Symbol 2988 EditableText | Uses:2986 | Used by:2993 |
Symbol 2989 Text | Uses:615 284 289 290 309 329 | Used by:2993 |
Symbol 2990 Text | Uses:289 290 | Used by:2993 |
Symbol 2991 Graphic | Used by:2993 | |
Symbol 2992 Text | Uses:309 | Used by:2993 |
Symbol 2993 MovieClip {Page208} | Uses:221 2983 2984 2985 2987 2988 2989 2990 2991 2992 | |
Symbol 2994 Font | Used by:2996 | |
Symbol 2995 Graphic | Used by:3008 | |
Symbol 2996 EditableText | Uses:2994 | Used by:3008 |
Symbol 2997 Graphic | Used by:3008 | |
Symbol 2998 Font | Used by:3000 | |
Symbol 2999 Graphic | Used by:3008 | |
Symbol 3000 EditableText | Uses:2998 | Used by:3008 |
Symbol 3001 Text | Uses:289 330 284 615 2316 386 290 309 452 | Used by:3008 |
Symbol 3002 Text | Uses:284 309 | Used by:3008 |
Symbol 3003 Graphic | Used by:3008 | |
Symbol 3004 Text | Uses:309 289 | Used by:3008 |
Symbol 3005 Text | Uses:289 | Used by:3008 |
Symbol 3006 Graphic | Used by:3008 | |
Symbol 3007 Text | Uses:309 | Used by:3008 |
Symbol 3008 MovieClip {Page209} | Uses:221 2995 2996 2997 2999 3000 3001 3002 3003 3004 3005 3006 3007 | |
Symbol 3009 Font | Used by:3011 | |
Symbol 3010 Graphic | Used by:3021 | |
Symbol 3011 EditableText | Uses:3009 | Used by:3021 |
Symbol 3012 Graphic | Used by:3021 | |
Symbol 3013 Font | Used by:3015 | |
Symbol 3014 Graphic | Used by:3021 | |
Symbol 3015 EditableText | Uses:3013 | Used by:3021 |
Symbol 3016 Text | Uses:289 284 290 2316 386 | Used by:3021 |
Symbol 3017 Graphic | Used by:3021 | |
Symbol 3018 Text | Uses:289 | Used by:3021 |
Symbol 3019 Graphic | Used by:3021 | |
Symbol 3020 Text | Uses:289 | Used by:3021 |
Symbol 3021 MovieClip {Page210} | Uses:221 3010 3011 3012 3014 3015 3016 3017 3018 3019 3020 | |
Symbol 3022 Font | Used by:3024 | |
Symbol 3023 Graphic | Used by:3033 | |
Symbol 3024 EditableText | Uses:3022 | Used by:3033 |
Symbol 3025 Graphic | Used by:3033 | |
Symbol 3026 Font | Used by:3028 | |
Symbol 3027 Graphic | Used by:3033 | |
Symbol 3028 EditableText | Uses:3026 | Used by:3033 |
Symbol 3029 Text | Uses:2283 2316 284 289 290 309 452 | Used by:3033 |
Symbol 3030 Text | Uses:289 | Used by:3033 |
Symbol 3031 Graphic | Used by:3033 | |
Symbol 3032 Text | Uses:289 | Used by:3033 |
Symbol 3033 MovieClip {Page211} | Uses:221 3023 3024 3025 3027 3028 3029 3030 3031 3032 | |
Symbol 3034 Font | Used by:3036 | |
Symbol 3035 Graphic | Used by:3042 | |
Symbol 3036 EditableText | Uses:3034 | Used by:3042 |
Symbol 3037 Font | Used by:3039 | |
Symbol 3038 Graphic | Used by:3042 | |
Symbol 3039 EditableText | Uses:3037 | Used by:3042 |
Symbol 3040 Text | Uses:289 290 284 615 2922 | Used by:3042 |
Symbol 3041 Text | Uses:284 309 452 | Used by:3042 |
Symbol 3042 MovieClip {Page212} | Uses:221 3035 3036 3038 3039 3040 3041 | |
Symbol 3043 Font | Used by:3045 | |
Symbol 3044 Graphic | Used by:3051 | |
Symbol 3045 EditableText | Uses:3043 | Used by:3051 |
Symbol 3046 Font | Used by:3048 | |
Symbol 3047 Graphic | Used by:3051 | |
Symbol 3048 EditableText | Uses:3046 | Used by:3051 |
Symbol 3049 Text | Uses:289 290 284 | Used by:3051 |
Symbol 3050 Text | Uses:289 290 284 309 452 | Used by:3051 |
Symbol 3051 MovieClip {Page213} | Uses:221 3044 3045 3047 3048 3049 3050 | |
Symbol 3052 Font | Used by:3054 | |
Symbol 3053 Graphic | Used by:3060 | |
Symbol 3054 EditableText | Uses:3052 | Used by:3060 |
Symbol 3055 Font | Used by:3057 | |
Symbol 3056 Graphic | Used by:3060 | |
Symbol 3057 EditableText | Uses:3055 | Used by:3060 |
Symbol 3058 Text | Uses:289 284 290 | Used by:3060 |
Symbol 3059 Text | Uses:284 289 290 | Used by:3060 |
Symbol 3060 MovieClip {Page214} | Uses:221 3053 3054 3056 3057 3058 3059 | |
Symbol 3061 Font | Used by:3063 | |
Symbol 3062 Graphic | Used by:3069 | |
Symbol 3063 EditableText | Uses:3061 | Used by:3069 |
Symbol 3064 Font | Used by:3066 | |
Symbol 3065 Graphic | Used by:3069 | |
Symbol 3066 EditableText | Uses:3064 | Used by:3069 |
Symbol 3067 Text | Uses:289 290 284 | Used by:3069 |
Symbol 3068 Text | Uses:289 284 309 452 | Used by:3069 |
Symbol 3069 MovieClip {Page215} | Uses:221 3062 3063 3065 3066 3067 3068 | |
Symbol 3070 Font | Used by:3072 | |
Symbol 3071 Graphic | Used by:3077 | |
Symbol 3072 EditableText | Uses:3070 | Used by:3077 |
Symbol 3073 Font | Used by:3075 | |
Symbol 3074 Graphic | Used by:3077 | |
Symbol 3075 EditableText | Uses:3073 | Used by:3077 |
Symbol 3076 Text | Uses:289 | Used by:3077 |
Symbol 3077 MovieClip {Page216} | Uses:221 3071 3072 3074 3075 3076 | |
Symbol 3078 Font | Used by:3080 | |
Symbol 3079 Graphic | Used by:3086 | |
Symbol 3080 EditableText | Uses:3078 | Used by:3086 |
Symbol 3081 Graphic | Uses:2301 | Used by:3086 |
Symbol 3082 Font | Used by:3084 | |
Symbol 3083 Graphic | Used by:3086 | |
Symbol 3084 EditableText | Uses:3082 | Used by:3086 |
Symbol 3085 Text | Uses:284 2477 | Used by:3086 |
Symbol 3086 MovieClip {Page217} | Uses:221 3079 3080 3081 3083 3084 3085 | |
Symbol 3087 Font | Used by:3089 | |
Symbol 3088 Graphic | Used by:3095 | |
Symbol 3089 EditableText | Uses:3087 | Used by:3095 |
Symbol 3090 Font | Used by:3092 | |
Symbol 3091 Graphic | Used by:3095 | |
Symbol 3092 EditableText | Uses:3090 | Used by:3095 |
Symbol 3093 Text | Uses:2283 284 3094 615 2288 289 290 | Used by:3095 |
Symbol 3094 Font | Used by:3093 3103 3180 3227 3244 3413 | |
Symbol 3095 MovieClip {Page218} | Uses:221 3088 3089 3091 3092 3093 | |
Symbol 3096 Font | Used by:3098 | |
Symbol 3097 Graphic | Used by:3117 | |
Symbol 3098 EditableText | Uses:3096 | Used by:3117 |
Symbol 3099 Graphic | Used by:3117 | |
Symbol 3100 Font | Used by:3102 | |
Symbol 3101 Graphic | Used by:3117 | |
Symbol 3102 EditableText | Uses:3100 | Used by:3117 |
Symbol 3103 Text | Uses:2283 284 3104 3105 3106 3107 3108 3109 3110 3094 3111 3112 330 3113 3114 289 290 | Used by:3117 |
Symbol 3104 Font | Used by:3103 | |
Symbol 3105 Font | Used by:3103 | |
Symbol 3106 Font | Used by:3103 | |
Symbol 3107 Font | Used by:3103 | |
Symbol 3108 Font | Used by:3103 3413 | |
Symbol 3109 Font | Used by:3103 | |
Symbol 3110 Font | Used by:3103 | |
Symbol 3111 Font | Used by:3103 | |
Symbol 3112 Font | Used by:3103 | |
Symbol 3113 Font | Used by:3103 | |
Symbol 3114 Font | Used by:3103 | |
Symbol 3115 Graphic | Used by:3117 | |
Symbol 3116 Text | Uses:289 | Used by:3117 |
Symbol 3117 MovieClip {Page219} | Uses:221 3097 3098 3099 3101 3102 3103 3115 3116 | |
Symbol 3118 Font | Used by:3120 | |
Symbol 3119 Graphic | Used by:3125 | |
Symbol 3120 EditableText | Uses:3118 | Used by:3125 |
Symbol 3121 Font | Used by:3123 | |
Symbol 3122 Graphic | Used by:3125 | |
Symbol 3123 EditableText | Uses:3121 | Used by:3125 |
Symbol 3124 Text | Uses:2283 284 289 290 309 452 | Used by:3125 |
Symbol 3125 MovieClip {Page220} | Uses:221 3119 3120 3122 3123 3124 | |
Symbol 3126 Font | Used by:3128 | |
Symbol 3127 Graphic | Used by:3136 | |
Symbol 3128 EditableText | Uses:3126 | Used by:3136 |
Symbol 3129 Bitmap | Used by:3130 | |
Symbol 3130 Graphic | Uses:3129 | Used by:3136 |
Symbol 3131 Font | Used by:3133 | |
Symbol 3132 Graphic | Used by:3136 | |
Symbol 3133 EditableText | Uses:3131 | Used by:3136 |
Symbol 3134 Text | Uses:284 2477 3135 | Used by:3136 |
Symbol 3135 Font | Used by:3134 | |
Symbol 3136 MovieClip {Page221} | Uses:221 3127 3128 3130 3132 3133 3134 | |
Symbol 3137 Font | Used by:3139 | |
Symbol 3138 Graphic | Used by:3147 | |
Symbol 3139 EditableText | Uses:3137 | Used by:3147 |
Symbol 3140 Font | Used by:3142 | |
Symbol 3141 Graphic | Used by:3147 | |
Symbol 3142 EditableText | Uses:3140 | Used by:3147 |
Symbol 3143 Text | Uses:2283 2316 284 386 2051 289 290 615 3144 330 903 | Used by:3147 |
Symbol 3144 Font | Used by:3143 3163 | |
Symbol 3145 Text | Uses:284 616 330 903 3146 | Used by:3147 |
Symbol 3146 Font | Used by:3145 | |
Symbol 3147 MovieClip {Page222} | Uses:221 3138 3139 3141 3142 3143 3145 | |
Symbol 3148 Font | Used by:3150 | |
Symbol 3149 Graphic | Used by:3156 | |
Symbol 3150 EditableText | Uses:3148 | Used by:3156 |
Symbol 3151 Font | Used by:3153 | |
Symbol 3152 Graphic | Used by:3156 | |
Symbol 3153 EditableText | Uses:3151 | Used by:3156 |
Symbol 3154 Text | Uses:289 284 615 330 | Used by:3156 |
Symbol 3155 Text | Uses:289 615 284 | Used by:3156 |
Symbol 3156 MovieClip {Page223} | Uses:221 3149 3150 3152 3153 3154 3155 | |
Symbol 3157 Font | Used by:3159 | |
Symbol 3158 Graphic | Used by:3165 | |
Symbol 3159 EditableText | Uses:3157 | Used by:3165 |
Symbol 3160 Font | Used by:3162 | |
Symbol 3161 Graphic | Used by:3165 | |
Symbol 3162 EditableText | Uses:3160 | Used by:3165 |
Symbol 3163 Text | Uses:289 615 284 3144 290 | Used by:3165 |
Symbol 3164 Text | Uses:289 284 | Used by:3165 |
Symbol 3165 MovieClip {Page224} | Uses:221 3158 3159 3161 3162 3163 3164 | |
Symbol 3166 Font | Used by:3168 | |
Symbol 3167 Graphic | Used by:3173 | |
Symbol 3168 EditableText | Uses:3166 | Used by:3173 |
Symbol 3169 Font | Used by:3171 | |
Symbol 3170 Graphic | Used by:3173 | |
Symbol 3171 EditableText | Uses:3169 | Used by:3173 |
Symbol 3172 Text | Uses:289 284 290 | Used by:3173 |
Symbol 3173 MovieClip {Page225} | Uses:221 3167 3168 3170 3171 3172 | |
Symbol 3174 Font | Used by:3176 | |
Symbol 3175 Graphic | Used by:3182 | |
Symbol 3176 EditableText | Uses:3174 | Used by:3182 |
Symbol 3177 Font | Used by:3179 | |
Symbol 3178 Graphic | Used by:3182 | |
Symbol 3179 EditableText | Uses:3177 | Used by:3182 |
Symbol 3180 Text | Uses:2283 284 3094 290 615 289 | Used by:3182 |
Symbol 3181 Text | Uses:289 284 | Used by:3182 |
Symbol 3182 MovieClip {Page226} | Uses:221 3175 3176 3178 3179 3180 3181 | |
Symbol 3183 Font | Used by:3185 | |
Symbol 3184 Graphic | Used by:3191 | |
Symbol 3185 EditableText | Uses:3183 | Used by:3191 |
Symbol 3186 Font | Used by:3188 | |
Symbol 3187 Graphic | Used by:3191 | |
Symbol 3188 EditableText | Uses:3186 | Used by:3191 |
Symbol 3189 Text | Uses:289 284 290 | Used by:3191 |
Symbol 3190 Text | Uses:289 | Used by:3191 |
Symbol 3191 MovieClip {Page227} | Uses:221 3184 3185 3187 3188 3189 3190 | |
Symbol 3192 Font | Used by:3194 | |
Symbol 3193 Graphic | Used by:3200 | |
Symbol 3194 EditableText | Uses:3192 | Used by:3200 |
Symbol 3195 Font | Used by:3197 | |
Symbol 3196 Graphic | Used by:3200 | |
Symbol 3197 EditableText | Uses:3195 | Used by:3200 |
Symbol 3198 Text | Uses:289 284 290 615 309 | Used by:3200 |
Symbol 3199 Text | Uses:289 284 615 | Used by:3200 |
Symbol 3200 MovieClip {Page228} | Uses:221 3193 3194 3196 3197 3198 3199 | |
Symbol 3201 Font | Used by:3203 | |
Symbol 3202 Graphic | Used by:3212 | |
Symbol 3203 EditableText | Uses:3201 | Used by:3212 |
Symbol 3204 Graphic | Used by:3212 | |
Symbol 3205 Font | Used by:3207 | |
Symbol 3206 Graphic | Used by:3212 | |
Symbol 3207 EditableText | Uses:3205 | Used by:3212 |
Symbol 3208 Text | Uses:289 290 284 615 330 | Used by:3212 |
Symbol 3209 Text | Uses:289 330 | Used by:3212 |
Symbol 3210 Graphic | Used by:3212 | |
Symbol 3211 Text | Uses:289 | Used by:3212 |
Symbol 3212 MovieClip {Page229} | Uses:221 3202 3203 3204 3206 3207 3208 3209 3210 3211 | |
Symbol 3213 Font | Used by:3215 | |
Symbol 3214 Graphic | Used by:3220 | |
Symbol 3215 EditableText | Uses:3213 | Used by:3220 |
Symbol 3216 Font | Used by:3218 | |
Symbol 3217 Graphic | Used by:3220 | |
Symbol 3218 EditableText | Uses:3216 | Used by:3220 |
Symbol 3219 Text | Uses:289 290 284 615 | Used by:3220 |
Symbol 3220 MovieClip {Page230} | Uses:221 3214 3215 3217 3218 3219 | |
Symbol 3221 Font | Used by:3223 | |
Symbol 3222 Graphic | Used by:3228 | |
Symbol 3223 EditableText | Uses:3221 | Used by:3228 |
Symbol 3224 Font | Used by:3226 | |
Symbol 3225 Graphic | Used by:3228 | |
Symbol 3226 EditableText | Uses:3224 | Used by:3228 |
Symbol 3227 Text | Uses:2283 284 3094 289 2530 330 | Used by:3228 |
Symbol 3228 MovieClip {Page231} | Uses:221 3222 3223 3225 3226 3227 | |
Symbol 3229 Font | Used by:3231 | |
Symbol 3230 Graphic | Used by:3237 | |
Symbol 3231 EditableText | Uses:3229 | Used by:3237 |
Symbol 3232 Font | Used by:3234 | |
Symbol 3233 Graphic | Used by:3237 | |
Symbol 3234 EditableText | Uses:3232 | Used by:3237 |
Symbol 3235 Text | Uses:2283 284 289 2530 309 | Used by:3237 |
Symbol 3236 Text | Uses:309 | Used by:3237 |
Symbol 3237 MovieClip {Page232} | Uses:221 3230 3231 3233 3234 3235 3236 | |
Symbol 3238 Font | Used by:3240 | |
Symbol 3239 Graphic | Used by:3245 | |
Symbol 3240 EditableText | Uses:3238 | Used by:3245 |
Symbol 3241 Font | Used by:3243 | |
Symbol 3242 Graphic | Used by:3245 | |
Symbol 3243 EditableText | Uses:3241 | Used by:3245 |
Symbol 3244 Text | Uses:2283 284 3094 289 309 | Used by:3245 |
Symbol 3245 MovieClip {Page233} | Uses:221 3239 3240 3242 3243 3244 | |
Symbol 3246 Font | Used by:3248 | |
Symbol 3247 Graphic | Used by:3254 | |
Symbol 3248 EditableText | Uses:3246 | Used by:3254 |
Symbol 3249 Graphic | Uses:2301 | Used by:3254 |
Symbol 3250 Font | Used by:3252 | |
Symbol 3251 Graphic | Used by:3254 | |
Symbol 3252 EditableText | Uses:3250 | Used by:3254 |
Symbol 3253 Text | Uses:284 2307 | Used by:3254 |
Symbol 3254 MovieClip {Page234} | Uses:221 3247 3248 3249 3251 3252 3253 | |
Symbol 3255 Font | Used by:3257 | |
Symbol 3256 Graphic | Used by:3263 | |
Symbol 3257 EditableText | Uses:3255 | Used by:3263 |
Symbol 3258 Font | Used by:3260 | |
Symbol 3259 Graphic | Used by:3263 | |
Symbol 3260 EditableText | Uses:3258 | Used by:3263 |
Symbol 3261 Text | Uses:2283 284 772 309 615 289 2530 | Used by:3263 |
Symbol 3262 Text | Uses:284 615 289 | Used by:3263 |
Symbol 3263 MovieClip {Page235} | Uses:221 3256 3257 3259 3260 3261 3262 | |
Symbol 3264 Font | Used by:3266 | |
Symbol 3265 Graphic | Used by:3271 | |
Symbol 3266 EditableText | Uses:3264 | Used by:3271 |
Symbol 3267 Font | Used by:3269 | |
Symbol 3268 Graphic | Used by:3271 | |
Symbol 3269 EditableText | Uses:3267 | Used by:3271 |
Symbol 3270 Text | Uses:615 289 284 | Used by:3271 |
Symbol 3271 MovieClip {Page236} | Uses:221 3265 3266 3268 3269 3270 | |
Symbol 3272 Font | Used by:3274 | |
Symbol 3273 Graphic | Used by:3284 | |
Symbol 3274 EditableText | Uses:3272 | Used by:3284 |
Symbol 3275 Graphic | Used by:3284 | |
Symbol 3276 Font | Used by:3278 | |
Symbol 3277 Graphic | Used by:3284 | |
Symbol 3278 EditableText | Uses:3276 | Used by:3284 |
Symbol 3279 Text | Uses:2283 284 290 2288 289 452 309 | Used by:3284 |
Symbol 3280 Text | Uses:289 284 452 309 | Used by:3284 |
Symbol 3281 Graphic | Used by:3284 | |
Symbol 3282 Text | Uses:289 | Used by:3284 |
Symbol 3283 Text | Uses:289 | Used by:3284 |
Symbol 3284 MovieClip {Page237} | Uses:221 3273 3274 3275 3277 3278 3279 3280 3281 3282 3283 | |
Symbol 3285 Font | Used by:3287 | |
Symbol 3286 Graphic | Used by:3293 | |
Symbol 3287 EditableText | Uses:3285 | Used by:3293 |
Symbol 3288 Font | Used by:3290 | |
Symbol 3289 Graphic | Used by:3293 | |
Symbol 3290 EditableText | Uses:3288 | Used by:3293 |
Symbol 3291 Text | Uses:289 284 2288 290 452 309 | Used by:3293 |
Symbol 3292 Text | Uses:2288 284 290 289 | Used by:3293 |
Symbol 3293 MovieClip {Page238} | Uses:221 3286 3287 3289 3290 3291 3292 | |
Symbol 3294 Font | Used by:3296 | |
Symbol 3295 Graphic | Used by:3302 | |
Symbol 3296 EditableText | Uses:3294 | Used by:3302 |
Symbol 3297 Font | Used by:3299 | |
Symbol 3298 Graphic | Used by:3302 | |
Symbol 3299 EditableText | Uses:3297 | Used by:3302 |
Symbol 3300 Text | Uses:289 284 2288 290 309 | Used by:3302 |
Symbol 3301 Text | Uses:290 289 284 | Used by:3302 |
Symbol 3302 MovieClip {Page239} | Uses:221 3295 3296 3298 3299 3300 3301 | |
Symbol 3303 Font | Used by:3305 | |
Symbol 3304 Graphic | Used by:3313 | |
Symbol 3305 EditableText | Uses:3303 | Used by:3313 |
Symbol 3306 Font | Used by:3308 | |
Symbol 3307 Graphic | Used by:3313 | |
Symbol 3308 EditableText | Uses:3306 | Used by:3313 |
Symbol 3309 Text | Uses:290 289 284 309 2288 3310 452 3311 | Used by:3313 |
Symbol 3310 Font | Used by:3309 3329 | |
Symbol 3311 Font | Used by:3309 | |
Symbol 3312 Text | Uses:289 284 452 309 | Used by:3313 |
Symbol 3313 MovieClip {Page240} | Uses:221 3304 3305 3307 3308 3309 3312 | |
Symbol 3314 Font | Used by:3316 | |
Symbol 3315 Graphic | Used by:3322 | |
Symbol 3316 EditableText | Uses:3314 | Used by:3322 |
Symbol 3317 Font | Used by:3319 | |
Symbol 3318 Graphic | Used by:3322 | |
Symbol 3319 EditableText | Uses:3317 | Used by:3322 |
Symbol 3320 Text | Uses:289 284 290 386 452 309 | Used by:3322 |
Symbol 3321 Text | Uses:284 290 289 452 309 | Used by:3322 |
Symbol 3322 MovieClip {Page241} | Uses:221 3315 3316 3318 3319 3320 3321 | |
Symbol 3323 Font | Used by:3325 | |
Symbol 3324 Graphic | Used by:3331 | |
Symbol 3325 EditableText | Uses:3323 | Used by:3331 |
Symbol 3326 Font | Used by:3328 | |
Symbol 3327 Graphic | Used by:3331 | |
Symbol 3328 EditableText | Uses:3326 | Used by:3331 |
Symbol 3329 Text | Uses:289 290 284 2288 3310 | Used by:3331 |
Symbol 3330 Text | Uses:289 290 284 | Used by:3331 |
Symbol 3331 MovieClip {Page242} | Uses:221 3324 3325 3327 3328 3329 3330 | |
Symbol 3332 Font | Used by:3334 | |
Symbol 3333 Graphic | Used by:3340 | |
Symbol 3334 EditableText | Uses:3332 | Used by:3340 |
Symbol 3335 Font | Used by:3337 | |
Symbol 3336 Graphic | Used by:3340 | |
Symbol 3337 EditableText | Uses:3335 | Used by:3340 |
Symbol 3338 Text | Uses:289 290 284 | Used by:3340 |
Symbol 3339 Text | Uses:289 290 284 | Used by:3340 |
Symbol 3340 MovieClip {Page243} | Uses:221 3333 3334 3336 3337 3338 3339 | |
Symbol 3341 Font | Used by:3343 | |
Symbol 3342 Graphic | Used by:3349 | |
Symbol 3343 EditableText | Uses:3341 | Used by:3349 |
Symbol 3344 Font | Used by:3346 | |
Symbol 3345 Graphic | Used by:3349 | |
Symbol 3346 EditableText | Uses:3344 | Used by:3349 |
Symbol 3347 Text | Uses:290 289 284 309 452 | Used by:3349 |
Symbol 3348 Text | Uses:289 290 | Used by:3349 |
Symbol 3349 MovieClip {Page244} | Uses:221 3342 3343 3345 3346 3347 3348 | |
Symbol 3350 Font | Used by:3352 | |
Symbol 3351 Graphic | Used by:3358 | |
Symbol 3352 EditableText | Uses:3350 | Used by:3358 |
Symbol 3353 Font | Used by:3355 | |
Symbol 3354 Graphic | Used by:3358 | |
Symbol 3355 EditableText | Uses:3353 | Used by:3358 |
Symbol 3356 Text | Uses:289 290 284 309 452 | Used by:3358 |
Symbol 3357 Text | Uses:289 284 290 | Used by:3358 |
Symbol 3358 MovieClip {Page245} | Uses:221 3351 3352 3354 3355 3356 3357 | |
Symbol 3359 Font | Used by:3361 | |
Symbol 3360 Graphic | Used by:3367 | |
Symbol 3361 EditableText | Uses:3359 | Used by:3367 |
Symbol 3362 Font | Used by:3364 | |
Symbol 3363 Graphic | Used by:3367 | |
Symbol 3364 EditableText | Uses:3362 | Used by:3367 |
Symbol 3365 Text | Uses:289 290 284 | Used by:3367 |
Symbol 3366 Text | Uses:289 290 284 | Used by:3367 |
Symbol 3367 MovieClip {Page246} | Uses:221 3360 3361 3363 3364 3365 3366 | |
Symbol 3368 Font | Used by:3370 | |
Symbol 3369 Graphic | Used by:3375 | |
Symbol 3370 EditableText | Uses:3368 | Used by:3375 |
Symbol 3371 Font | Used by:3373 | |
Symbol 3372 Graphic | Used by:3375 | |
Symbol 3373 EditableText | Uses:3371 | Used by:3375 |
Symbol 3374 Text | Uses:289 290 284 | Used by:3375 |
Symbol 3375 MovieClip {Page247} | Uses:221 3369 3370 3372 3373 3374 | |
Symbol 3376 Font | Used by:3378 | |
Symbol 3377 Graphic | Used by:3385 | |
Symbol 3378 EditableText | Uses:3376 | Used by:3385 |
Symbol 3379 Bitmap | Used by:3380 | |
Symbol 3380 Graphic | Uses:3379 | Used by:3385 |
Symbol 3381 Font | Used by:3383 | |
Symbol 3382 Graphic | Used by:3385 | |
Symbol 3383 EditableText | Uses:3381 | Used by:3385 |
Symbol 3384 Text | Uses:2580 284 | Used by:3385 |
Symbol 3385 MovieClip {Page248} | Uses:221 3377 3378 3380 3382 3383 3384 | |
Symbol 3386 Font | Used by:3388 | |
Symbol 3387 Graphic | Used by:3391 | |
Symbol 3388 EditableText | Uses:3386 | Used by:3391 |
Symbol 3389 Bitmap | Used by:3390 | |
Symbol 3390 Graphic | Uses:3389 | Used by:3391 |
Symbol 3391 MovieClip {Page249} | Uses:221 3387 3388 3390 | |
Symbol 3392 Font | Used by:3394 | |
Symbol 3393 Graphic | Used by:3397 | |
Symbol 3394 EditableText | Uses:3392 | Used by:3397 |
Symbol 3395 Bitmap | Used by:3396 | |
Symbol 3396 Graphic | Uses:3395 | Used by:3397 |
Symbol 3397 MovieClip {Page250} | Uses:221 3393 3394 3396 | |
Symbol 3398 Font | Used by:3400 | |
Symbol 3399 Graphic | Used by:3403 | |
Symbol 3400 EditableText | Uses:3398 | Used by:3403 |
Symbol 3401 Bitmap | Used by:3402 | |
Symbol 3402 Graphic | Uses:3401 | Used by:3403 |
Symbol 3403 MovieClip {Page251} | Uses:221 3399 3400 3402 | |
Symbol 3404 Font | Used by:3406 | |
Symbol 3405 Graphic | Used by:3418 | |
Symbol 3406 EditableText | Uses:3404 | Used by:3418 |
Symbol 3407 Bitmap | Used by:3408 | |
Symbol 3408 Graphic | Uses:3407 | Used by:3418 |
Symbol 3409 Graphic | Used by:3418 | |
Symbol 3410 Font | Used by:3412 | |
Symbol 3411 Graphic | Used by:3418 | |
Symbol 3412 EditableText | Uses:3410 | Used by:3418 |
Symbol 3413 Text | Uses:2283 284 3414 3108 3094 328 903 290 | Used by:3418 |
Symbol 3414 Font | Used by:3413 | |
Symbol 3415 Text | Uses:290 284 | Used by:3418 |
Symbol 3416 Graphic | Used by:3418 | |
Symbol 3417 Text | Uses:903 | Used by:3418 |
Symbol 3418 MovieClip {Page252} | Uses:221 3405 3406 3408 3409 3411 3412 3413 3415 3416 3417 | |
Symbol 3419 Font | Used by:3421 | |
Symbol 3420 Graphic | Used by:3428 | |
Symbol 3421 EditableText | Uses:3419 | Used by:3428 |
Symbol 3422 Bitmap | Used by:3423 | |
Symbol 3423 Graphic | Uses:3422 | Used by:3428 |
Symbol 3424 Font | Used by:3426 | |
Symbol 3425 Graphic | Used by:3428 | |
Symbol 3426 EditableText | Uses:3424 | Used by:3428 |
Symbol 3427 Text | Uses:290 | Used by:3428 |
Symbol 3428 MovieClip {Page253} | Uses:221 3420 3421 3423 3425 3426 3427 |
Instance Names
"DocArea" | Frame 2 | Symbol 134 MovieClip {ScrollPain} |
"HandCursor" | Frame 2 | Symbol 137 MovieClip |
"TextCursor" | Frame 2 | Symbol 139 MovieClip |
"toolbar" | Frame 2 | Symbol 155 MovieClip {print2flash_fla._toolbar_25} |
"msg" | Symbol 6 MovieClip {waitmsg} Frame 1 | Symbol 2 EditableText |
"text" | Symbol 9 MovieClip {textmsg} Frame 1 | Symbol 8 EditableText |
"BottomArea" | Symbol 12 MovieClip {ScrollArea} Frame 1 | Symbol 11 MovieClip |
"l_mc" | Symbol 42 MovieClip Frame 1 | Symbol 37 MovieClip |
"m_mc" | Symbol 42 MovieClip Frame 1 | Symbol 39 MovieClip |
"r_mc" | Symbol 42 MovieClip Frame 1 | Symbol 41 MovieClip |
"closeBtn" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 49 Button |
"title" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 50 EditableText |
"pagestxt" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 51 EditableText |
"pagesFrom" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 52 EditableText |
"totxt" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 53 EditableText |
"pagesTo" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 54 EditableText |
"OKBtn" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 73 MovieClip {fl.controls.Button} |
"cancelBtn" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 73 MovieClip {fl.controls.Button} |
"optNoScale" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 33 MovieClip {fl.controls.RadioButton} |
"optFit" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 33 MovieClip {fl.controls.RadioButton} |
"scalingtxt" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 74 EditableText |
"fromtxt" | Symbol 76 MovieClip {PrintRangeWnd} Frame 1 | Symbol 75 EditableText |
"but" | Symbol 84 MovieClip {def_fullscreen} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"SliderHandleBtn" | Symbol 86 MovieClip {print2flash_fla.MCSlider_47} Frame 1 | Symbol 85 Button {ImgButton} |
"SliderHandle" | Symbol 87 MovieClip {Slider} Frame 1 | Symbol 86 MovieClip {print2flash_fla.MCSlider_47} |
"but" | Symbol 88 MovieClip {def_forward} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 89 MovieClip {def_back} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 90 MovieClip {def_nextpage} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 91 MovieClip {def_more} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 92 MovieClip {def_selMode} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 93 MovieClip {def_newwindow} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 94 MovieClip {def_help} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 95 MovieClip {def_rotate} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 96 MovieClip {def_prevpage} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 97 MovieClip {def_scalePage} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 98 MovieClip {def_scaleWidth} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 99 MovieClip {def_moveMode} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 100 MovieClip {def_print} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"but" | Symbol 141 MovieClip {print2flash_fla.def_searchbut_27} Frame 1 | Symbol 83 MovieClip {manualbutton} |
"ScaleTextField" | Symbol 144 MovieClip {print2flash_fla.Timeline_30} Frame 1 | Symbol 143 EditableText |
"TotalPages" | Symbol 147 MovieClip {print2flash_fla.Timeline_32} Frame 1 | Symbol 146 EditableText |
"PageNoField" | Symbol 149 MovieClip {print2flash_fla.Timeline_33} Frame 1 | Symbol 148 EditableText |
"TotalPagesMC" | Symbol 150 MovieClip {print2flash_fla.Timeline_31} Frame 1 | Symbol 147 MovieClip {print2flash_fla.Timeline_32} |
"PageNoFieldMC" | Symbol 150 MovieClip {print2flash_fla.Timeline_31} Frame 1 | Symbol 149 MovieClip {print2flash_fla.Timeline_33} |
"searchPattern" | Symbol 153 MovieClip {print2flash_fla.Timeline_50} Frame 1 | Symbol 152 EditableText |
"toolbarbgr" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 140 MovieClip |
"searchbut" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 141 MovieClip {print2flash_fla.def_searchbut_27} |
"print" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 100 MovieClip {def_print} |
"ScaleTextMovie" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 144 MovieClip {print2flash_fla.Timeline_30} |
"PageNoMovie" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 150 MovieClip {print2flash_fla.Timeline_31} |
"moveMode" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 99 MovieClip {def_moveMode} |
"scaleWidth" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 98 MovieClip {def_scaleWidth} |
"scalePage" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 97 MovieClip {def_scalePage} |
"prevpage" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 96 MovieClip {def_prevpage} |
"rotate" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 95 MovieClip {def_rotate} |
"help" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 94 MovieClip {def_help} |
"newwindow" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 93 MovieClip {def_newwindow} |
"selMode" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 92 MovieClip {def_selMode} |
"more" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 91 MovieClip {def_more} |
"nextpage" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 90 MovieClip {def_nextpage} |
"back" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 89 MovieClip {def_back} |
"forward" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 88 MovieClip {def_forward} |
"ZoomSlider" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 87 MovieClip {Slider} |
"fullscreen" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 84 MovieClip {def_fullscreen} |
"searchPatternmc" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 153 MovieClip {print2flash_fla.Timeline_50} |
"logo" | Symbol 155 MovieClip {print2flash_fla._toolbar_25} Frame 1 | Symbol 154 MovieClip |
"CR" | Symbol 227 MovieClip {Page1} Frame 1 | Symbol 224 EditableText |
"CR" | Symbol 291 MovieClip {Page2} Frame 1 | Symbol 230 EditableText |
"CR" | Symbol 291 MovieClip {Page2} Frame 1 | Symbol 287 EditableText |
"CR" | Symbol 301 MovieClip {Page3} Frame 1 | Symbol 294 EditableText |
"CR" | Symbol 301 MovieClip {Page3} Frame 1 | Symbol 297 EditableText |
"CR" | Symbol 310 MovieClip {Page4} Frame 1 | Symbol 304 EditableText |
"CR" | Symbol 310 MovieClip {Page4} Frame 1 | Symbol 307 EditableText |
"CR" | Symbol 318 MovieClip {Page5} Frame 1 | Symbol 313 EditableText |
"CR" | Symbol 318 MovieClip {Page5} Frame 1 | Symbol 316 EditableText |
"CR" | Symbol 343 MovieClip {Page6} Frame 1 | Symbol 321 EditableText |
"CR" | Symbol 343 MovieClip {Page6} Frame 1 | Symbol 325 EditableText |
"CR" | Symbol 360 MovieClip {Page7} Frame 1 | Symbol 346 EditableText |
"CR" | Symbol 360 MovieClip {Page7} Frame 1 | Symbol 350 EditableText |
"CR" | Symbol 369 MovieClip {Page8} Frame 1 | Symbol 363 EditableText |
"CR" | Symbol 369 MovieClip {Page8} Frame 1 | Symbol 366 EditableText |
"CR" | Symbol 378 MovieClip {Page9} Frame 1 | Symbol 372 EditableText |
"CR" | Symbol 378 MovieClip {Page9} Frame 1 | Symbol 375 EditableText |
"CR" | Symbol 391 MovieClip {Page10} Frame 1 | Symbol 381 EditableText |
"CR" | Symbol 391 MovieClip {Page10} Frame 1 | Symbol 384 EditableText |
"CR" | Symbol 400 MovieClip {Page11} Frame 1 | Symbol 394 EditableText |
"CR" | Symbol 400 MovieClip {Page11} Frame 1 | Symbol 397 EditableText |
"CR" | Symbol 409 MovieClip {Page12} Frame 1 | Symbol 403 EditableText |
"CR" | Symbol 409 MovieClip {Page12} Frame 1 | Symbol 406 EditableText |
"CR" | Symbol 417 MovieClip {Page13} Frame 1 | Symbol 412 EditableText |
"CR" | Symbol 417 MovieClip {Page13} Frame 1 | Symbol 415 EditableText |
"CR" | Symbol 426 MovieClip {Page14} Frame 1 | Symbol 420 EditableText |
"CR" | Symbol 426 MovieClip {Page14} Frame 1 | Symbol 423 EditableText |
"CR" | Symbol 435 MovieClip {Page15} Frame 1 | Symbol 429 EditableText |
"CR" | Symbol 435 MovieClip {Page15} Frame 1 | Symbol 432 EditableText |
"CR" | Symbol 444 MovieClip {Page16} Frame 1 | Symbol 438 EditableText |
"CR" | Symbol 444 MovieClip {Page16} Frame 1 | Symbol 441 EditableText |
"CR" | Symbol 453 MovieClip {Page17} Frame 1 | Symbol 447 EditableText |
"CR" | Symbol 453 MovieClip {Page17} Frame 1 | Symbol 450 EditableText |
"CR" | Symbol 462 MovieClip {Page18} Frame 1 | Symbol 456 EditableText |
"CR" | Symbol 462 MovieClip {Page18} Frame 1 | Symbol 459 EditableText |
"CR" | Symbol 471 MovieClip {Page19} Frame 1 | Symbol 465 EditableText |
"CR" | Symbol 471 MovieClip {Page19} Frame 1 | Symbol 468 EditableText |
"CR" | Symbol 480 MovieClip {Page20} Frame 1 | Symbol 474 EditableText |
"CR" | Symbol 480 MovieClip {Page20} Frame 1 | Symbol 477 EditableText |
"CR" | Symbol 489 MovieClip {Page21} Frame 1 | Symbol 483 EditableText |
"CR" | Symbol 489 MovieClip {Page21} Frame 1 | Symbol 486 EditableText |
"CR" | Symbol 498 MovieClip {Page22} Frame 1 | Symbol 492 EditableText |
"CR" | Symbol 498 MovieClip {Page22} Frame 1 | Symbol 495 EditableText |
"CR" | Symbol 507 MovieClip {Page23} Frame 1 | Symbol 501 EditableText |
"CR" | Symbol 507 MovieClip {Page23} Frame 1 | Symbol 504 EditableText |
"CR" | Symbol 516 MovieClip {Page24} Frame 1 | Symbol 510 EditableText |
"CR" | Symbol 516 MovieClip {Page24} Frame 1 | Symbol 513 EditableText |
"CR" | Symbol 525 MovieClip {Page25} Frame 1 | Symbol 519 EditableText |
"CR" | Symbol 525 MovieClip {Page25} Frame 1 | Symbol 522 EditableText |
"CR" | Symbol 534 MovieClip {Page26} Frame 1 | Symbol 528 EditableText |
"CR" | Symbol 534 MovieClip {Page26} Frame 1 | Symbol 531 EditableText |
"CR" | Symbol 543 MovieClip {Page27} Frame 1 | Symbol 537 EditableText |
"CR" | Symbol 543 MovieClip {Page27} Frame 1 | Symbol 540 EditableText |
"CR" | Symbol 552 MovieClip {Page28} Frame 1 | Symbol 546 EditableText |
"CR" | Symbol 552 MovieClip {Page28} Frame 1 | Symbol 549 EditableText |
"CR" | Symbol 561 MovieClip {Page29} Frame 1 | Symbol 555 EditableText |
"CR" | Symbol 561 MovieClip {Page29} Frame 1 | Symbol 558 EditableText |
"CR" | Symbol 570 MovieClip {Page30} Frame 1 | Symbol 564 EditableText |
"CR" | Symbol 570 MovieClip {Page30} Frame 1 | Symbol 567 EditableText |
"CR" | Symbol 580 MovieClip {Page31} Frame 1 | Symbol 573 EditableText |
"CR" | Symbol 580 MovieClip {Page31} Frame 1 | Symbol 578 EditableText |
"CR" | Symbol 589 MovieClip {Page32} Frame 1 | Symbol 583 EditableText |
"CR" | Symbol 589 MovieClip {Page32} Frame 1 | Symbol 586 EditableText |
"CR" | Symbol 598 MovieClip {Page33} Frame 1 | Symbol 592 EditableText |
"CR" | Symbol 598 MovieClip {Page33} Frame 1 | Symbol 595 EditableText |
"CR" | Symbol 607 MovieClip {Page34} Frame 1 | Symbol 601 EditableText |
"CR" | Symbol 607 MovieClip {Page34} Frame 1 | Symbol 604 EditableText |
"CR" | Symbol 618 MovieClip {Page35} Frame 1 | Symbol 610 EditableText |
"CR" | Symbol 618 MovieClip {Page35} Frame 1 | Symbol 613 EditableText |
"CR" | Symbol 627 MovieClip {Page36} Frame 1 | Symbol 621 EditableText |
"CR" | Symbol 627 MovieClip {Page36} Frame 1 | Symbol 624 EditableText |
"CR" | Symbol 636 MovieClip {Page37} Frame 1 | Symbol 630 EditableText |
"CR" | Symbol 636 MovieClip {Page37} Frame 1 | Symbol 633 EditableText |
"CR" | Symbol 644 MovieClip {Page38} Frame 1 | Symbol 639 EditableText |
"CR" | Symbol 644 MovieClip {Page38} Frame 1 | Symbol 642 EditableText |
"CR" | Symbol 653 MovieClip {Page39} Frame 1 | Symbol 647 EditableText |
"CR" | Symbol 653 MovieClip {Page39} Frame 1 | Symbol 650 EditableText |
"CR" | Symbol 666 MovieClip {Page40} Frame 1 | Symbol 656 EditableText |
"CR" | Symbol 666 MovieClip {Page40} Frame 1 | Symbol 661 EditableText |
"CR" | Symbol 675 MovieClip {Page41} Frame 1 | Symbol 669 EditableText |
"CR" | Symbol 675 MovieClip {Page41} Frame 1 | Symbol 672 EditableText |
"CR" | Symbol 683 MovieClip {Page42} Frame 1 | Symbol 678 EditableText |
"CR" | Symbol 683 MovieClip {Page42} Frame 1 | Symbol 681 EditableText |
"CR" | Symbol 696 MovieClip {Page43} Frame 1 | Symbol 686 EditableText |
"CR" | Symbol 696 MovieClip {Page43} Frame 1 | Symbol 691 EditableText |
"CR" | Symbol 709 MovieClip {Page44} Frame 1 | Symbol 699 EditableText |
"CR" | Symbol 709 MovieClip {Page44} Frame 1 | Symbol 704 EditableText |
"CR" | Symbol 718 MovieClip {Page45} Frame 1 | Symbol 712 EditableText |
"CR" | Symbol 718 MovieClip {Page45} Frame 1 | Symbol 715 EditableText |
"CR" | Symbol 727 MovieClip {Page46} Frame 1 | Symbol 721 EditableText |
"CR" | Symbol 727 MovieClip {Page46} Frame 1 | Symbol 724 EditableText |
"CR" | Symbol 736 MovieClip {Page47} Frame 1 | Symbol 730 EditableText |
"CR" | Symbol 736 MovieClip {Page47} Frame 1 | Symbol 733 EditableText |
"CR" | Symbol 745 MovieClip {Page48} Frame 1 | Symbol 739 EditableText |
"CR" | Symbol 745 MovieClip {Page48} Frame 1 | Symbol 742 EditableText |
"CR" | Symbol 756 MovieClip {Page49} Frame 1 | Symbol 748 EditableText |
"CR" | Symbol 756 MovieClip {Page49} Frame 1 | Symbol 753 EditableText |
"CR" | Symbol 764 MovieClip {Page50} Frame 1 | Symbol 759 EditableText |
"CR" | Symbol 764 MovieClip {Page50} Frame 1 | Symbol 762 EditableText |
"CR" | Symbol 774 MovieClip {Page51} Frame 1 | Symbol 767 EditableText |
"CR" | Symbol 774 MovieClip {Page51} Frame 1 | Symbol 770 EditableText |
"CR" | Symbol 783 MovieClip {Page52} Frame 1 | Symbol 777 EditableText |
"CR" | Symbol 783 MovieClip {Page52} Frame 1 | Symbol 780 EditableText |
"CR" | Symbol 792 MovieClip {Page53} Frame 1 | Symbol 786 EditableText |
"CR" | Symbol 792 MovieClip {Page53} Frame 1 | Symbol 789 EditableText |
"CR" | Symbol 800 MovieClip {Page54} Frame 1 | Symbol 795 EditableText |
"CR" | Symbol 800 MovieClip {Page54} Frame 1 | Symbol 798 EditableText |
"CR" | Symbol 810 MovieClip {Page55} Frame 1 | Symbol 803 EditableText |
"CR" | Symbol 810 MovieClip {Page55} Frame 1 | Symbol 808 EditableText |
"CR" | Symbol 821 MovieClip {Page56} Frame 1 | Symbol 813 EditableText |
"CR" | Symbol 821 MovieClip {Page56} Frame 1 | Symbol 817 EditableText |
"CR" | Symbol 830 MovieClip {Page57} Frame 1 | Symbol 824 EditableText |
"CR" | Symbol 830 MovieClip {Page57} Frame 1 | Symbol 827 EditableText |
"CR" | Symbol 839 MovieClip {Page58} Frame 1 | Symbol 833 EditableText |
"CR" | Symbol 839 MovieClip {Page58} Frame 1 | Symbol 836 EditableText |
"CR" | Symbol 848 MovieClip {Page59} Frame 1 | Symbol 842 EditableText |
"CR" | Symbol 848 MovieClip {Page59} Frame 1 | Symbol 845 EditableText |
"CR" | Symbol 857 MovieClip {Page60} Frame 1 | Symbol 851 EditableText |
"CR" | Symbol 857 MovieClip {Page60} Frame 1 | Symbol 854 EditableText |
"CR" | Symbol 868 MovieClip {Page61} Frame 1 | Symbol 860 EditableText |
"CR" | Symbol 868 MovieClip {Page61} Frame 1 | Symbol 864 EditableText |
"CR" | Symbol 877 MovieClip {Page62} Frame 1 | Symbol 871 EditableText |
"CR" | Symbol 877 MovieClip {Page62} Frame 1 | Symbol 874 EditableText |
"CR" | Symbol 886 MovieClip {Page63} Frame 1 | Symbol 880 EditableText |
"CR" | Symbol 886 MovieClip {Page63} Frame 1 | Symbol 883 EditableText |
"CR" | Symbol 894 MovieClip {Page64} Frame 1 | Symbol 889 EditableText |
"CR" | Symbol 894 MovieClip {Page64} Frame 1 | Symbol 892 EditableText |
"CR" | Symbol 905 MovieClip {Page65} Frame 1 | Symbol 897 EditableText |
"CR" | Symbol 905 MovieClip {Page65} Frame 1 | Symbol 901 EditableText |
"CR" | Symbol 918 MovieClip {Page66} Frame 1 | Symbol 908 EditableText |
"CR" | Symbol 918 MovieClip {Page66} Frame 1 | Symbol 911 EditableText |
"CR" | Symbol 927 MovieClip {Page67} Frame 1 | Symbol 921 EditableText |
"CR" | Symbol 927 MovieClip {Page67} Frame 1 | Symbol 924 EditableText |
"CR" | Symbol 935 MovieClip {Page68} Frame 1 | Symbol 930 EditableText |
"CR" | Symbol 935 MovieClip {Page68} Frame 1 | Symbol 933 EditableText |
"CR" | Symbol 947 MovieClip {Page69} Frame 1 | Symbol 938 EditableText |
"CR" | Symbol 947 MovieClip {Page69} Frame 1 | Symbol 943 EditableText |
"CR" | Symbol 956 MovieClip {Page70} Frame 1 | Symbol 950 EditableText |
"CR" | Symbol 956 MovieClip {Page70} Frame 1 | Symbol 953 EditableText |
"CR" | Symbol 970 MovieClip {Page71} Frame 1 | Symbol 959 EditableText |
"CR" | Symbol 970 MovieClip {Page71} Frame 1 | Symbol 962 EditableText |
"CR" | Symbol 980 MovieClip {Page72} Frame 1 | Symbol 973 EditableText |
"CR" | Symbol 980 MovieClip {Page72} Frame 1 | Symbol 977 EditableText |
"CR" | Symbol 989 MovieClip {Page73} Frame 1 | Symbol 983 EditableText |
"CR" | Symbol 989 MovieClip {Page73} Frame 1 | Symbol 986 EditableText |
"CR" | Symbol 997 MovieClip {Page74} Frame 1 | Symbol 992 EditableText |
"CR" | Symbol 997 MovieClip {Page74} Frame 1 | Symbol 995 EditableText |
"CR" | Symbol 1007 MovieClip {Page75} Frame 1 | Symbol 1000 EditableText |
"CR" | Symbol 1007 MovieClip {Page75} Frame 1 | Symbol 1004 EditableText |
"CR" | Symbol 1015 MovieClip {Page76} Frame 1 | Symbol 1010 EditableText |
"CR" | Symbol 1015 MovieClip {Page76} Frame 1 | Symbol 1013 EditableText |
"CR" | Symbol 1026 MovieClip {Page77} Frame 1 | Symbol 1018 EditableText |
"CR" | Symbol 1026 MovieClip {Page77} Frame 1 | Symbol 1022 EditableText |
"CR" | Symbol 1035 MovieClip {Page78} Frame 1 | Symbol 1029 EditableText |
"CR" | Symbol 1035 MovieClip {Page78} Frame 1 | Symbol 1032 EditableText |
"CR" | Symbol 1048 MovieClip {Page79} Frame 1 | Symbol 1038 EditableText |
"CR" | Symbol 1048 MovieClip {Page79} Frame 1 | Symbol 1042 EditableText |
"CR" | Symbol 1056 MovieClip {Page80} Frame 1 | Symbol 1051 EditableText |
"CR" | Symbol 1056 MovieClip {Page80} Frame 1 | Symbol 1054 EditableText |
"CR" | Symbol 1064 MovieClip {Page81} Frame 1 | Symbol 1059 EditableText |
"CR" | Symbol 1064 MovieClip {Page81} Frame 1 | Symbol 1062 EditableText |
"CR" | Symbol 1075 MovieClip {Page82} Frame 1 | Symbol 1067 EditableText |
"CR" | Symbol 1075 MovieClip {Page82} Frame 1 | Symbol 1072 EditableText |
"CR" | Symbol 1084 MovieClip {Page83} Frame 1 | Symbol 1078 EditableText |
"CR" | Symbol 1084 MovieClip {Page83} Frame 1 | Symbol 1081 EditableText |
"CR" | Symbol 1092 MovieClip {Page84} Frame 1 | Symbol 1087 EditableText |
"CR" | Symbol 1092 MovieClip {Page84} Frame 1 | Symbol 1090 EditableText |
"CR" | Symbol 1103 MovieClip {Page85} Frame 1 | Symbol 1095 EditableText |
"CR" | Symbol 1103 MovieClip {Page85} Frame 1 | Symbol 1100 EditableText |
"CR" | Symbol 1112 MovieClip {Page86} Frame 1 | Symbol 1106 EditableText |
"CR" | Symbol 1112 MovieClip {Page86} Frame 1 | Symbol 1109 EditableText |
"CR" | Symbol 1122 MovieClip {Page87} Frame 1 | Symbol 1115 EditableText |
"CR" | Symbol 1122 MovieClip {Page87} Frame 1 | Symbol 1118 EditableText |
"CR" | Symbol 1142 MovieClip {Page88} Frame 1 | Symbol 1125 EditableText |
"CR" | Symbol 1142 MovieClip {Page88} Frame 1 | Symbol 1130 EditableText |
"CR" | Symbol 1150 MovieClip {Page89} Frame 1 | Symbol 1145 EditableText |
"CR" | Symbol 1150 MovieClip {Page89} Frame 1 | Symbol 1148 EditableText |
"CR" | Symbol 1160 MovieClip {Page90} Frame 1 | Symbol 1153 EditableText |
"CR" | Symbol 1160 MovieClip {Page90} Frame 1 | Symbol 1157 EditableText |
"CR" | Symbol 1169 MovieClip {Page91} Frame 1 | Symbol 1163 EditableText |
"CR" | Symbol 1169 MovieClip {Page91} Frame 1 | Symbol 1166 EditableText |
"CR" | Symbol 1178 MovieClip {Page92} Frame 1 | Symbol 1172 EditableText |
"CR" | Symbol 1178 MovieClip {Page92} Frame 1 | Symbol 1175 EditableText |
"CR" | Symbol 1187 MovieClip {Page93} Frame 1 | Symbol 1181 EditableText |
"CR" | Symbol 1187 MovieClip {Page93} Frame 1 | Symbol 1184 EditableText |
"CR" | Symbol 1197 MovieClip {Page94} Frame 1 | Symbol 1190 EditableText |
"CR" | Symbol 1197 MovieClip {Page94} Frame 1 | Symbol 1193 EditableText |
"CR" | Symbol 1965 MovieClip {Page95} Frame 1 | Symbol 1200 EditableText |
"CR" | Symbol 1965 MovieClip {Page95} Frame 1 | Symbol 1963 EditableText |
"CR" | Symbol 1976 MovieClip {Page96} Frame 1 | Symbol 1968 EditableText |
"CR" | Symbol 1976 MovieClip {Page96} Frame 1 | Symbol 1972 EditableText |
"CR" | Symbol 1984 MovieClip {Page97} Frame 1 | Symbol 1979 EditableText |
"CR" | Symbol 1984 MovieClip {Page97} Frame 1 | Symbol 1982 EditableText |
"CR" | Symbol 1992 MovieClip {Page98} Frame 1 | Symbol 1987 EditableText |
"CR" | Symbol 1992 MovieClip {Page98} Frame 1 | Symbol 1990 EditableText |
"CR" | Symbol 2000 MovieClip {Page99} Frame 1 | Symbol 1995 EditableText |
"CR" | Symbol 2000 MovieClip {Page99} Frame 1 | Symbol 1998 EditableText |
"CR" | Symbol 2009 MovieClip {Page100} Frame 1 | Symbol 2003 EditableText |
"CR" | Symbol 2009 MovieClip {Page100} Frame 1 | Symbol 2006 EditableText |
"CR" | Symbol 2018 MovieClip {Page101} Frame 1 | Symbol 2012 EditableText |
"CR" | Symbol 2018 MovieClip {Page101} Frame 1 | Symbol 2015 EditableText |
"CR" | Symbol 2027 MovieClip {Page102} Frame 1 | Symbol 2021 EditableText |
"CR" | Symbol 2027 MovieClip {Page102} Frame 1 | Symbol 2024 EditableText |
"CR" | Symbol 2035 MovieClip {Page103} Frame 1 | Symbol 2030 EditableText |
"CR" | Symbol 2035 MovieClip {Page103} Frame 1 | Symbol 2033 EditableText |
"CR" | Symbol 2043 MovieClip {Page104} Frame 1 | Symbol 2038 EditableText |
"CR" | Symbol 2043 MovieClip {Page104} Frame 1 | Symbol 2041 EditableText |
"CR" | Symbol 2053 MovieClip {Page105} Frame 1 | Symbol 2046 EditableText |
"CR" | Symbol 2053 MovieClip {Page105} Frame 1 | Symbol 2049 EditableText |
"CR" | Symbol 2067 MovieClip {Page106} Frame 1 | Symbol 2056 EditableText |
"CR" | Symbol 2067 MovieClip {Page106} Frame 1 | Symbol 2059 EditableText |
"CR" | Symbol 2077 MovieClip {Page107} Frame 1 | Symbol 2070 EditableText |
"CR" | Symbol 2077 MovieClip {Page107} Frame 1 | Symbol 2075 EditableText |
"CR" | Symbol 2086 MovieClip {Page108} Frame 1 | Symbol 2080 EditableText |
"CR" | Symbol 2086 MovieClip {Page108} Frame 1 | Symbol 2084 EditableText |
"CR" | Symbol 2097 MovieClip {Page109} Frame 1 | Symbol 2089 EditableText |
"CR" | Symbol 2097 MovieClip {Page109} Frame 1 | Symbol 2094 EditableText |
"CR" | Symbol 2107 MovieClip {Page110} Frame 1 | Symbol 2100 EditableText |
"CR" | Symbol 2107 MovieClip {Page110} Frame 1 | Symbol 2104 EditableText |
"CR" | Symbol 2115 MovieClip {Page111} Frame 1 | Symbol 2110 EditableText |
"CR" | Symbol 2115 MovieClip {Page111} Frame 1 | Symbol 2113 EditableText |
"CR" | Symbol 2123 MovieClip {Page112} Frame 1 | Symbol 2118 EditableText |
"CR" | Symbol 2123 MovieClip {Page112} Frame 1 | Symbol 2121 EditableText |
"CR" | Symbol 2131 MovieClip {Page113} Frame 1 | Symbol 2126 EditableText |
"CR" | Symbol 2131 MovieClip {Page113} Frame 1 | Symbol 2129 EditableText |
"CR" | Symbol 2139 MovieClip {Page114} Frame 1 | Symbol 2134 EditableText |
"CR" | Symbol 2139 MovieClip {Page114} Frame 1 | Symbol 2137 EditableText |
"CR" | Symbol 2147 MovieClip {Page115} Frame 1 | Symbol 2142 EditableText |
"CR" | Symbol 2147 MovieClip {Page115} Frame 1 | Symbol 2145 EditableText |
"CR" | Symbol 2155 MovieClip {Page116} Frame 1 | Symbol 2150 EditableText |
"CR" | Symbol 2155 MovieClip {Page116} Frame 1 | Symbol 2153 EditableText |
"CR" | Symbol 2163 MovieClip {Page117} Frame 1 | Symbol 2158 EditableText |
"CR" | Symbol 2163 MovieClip {Page117} Frame 1 | Symbol 2161 EditableText |
"CR" | Symbol 2171 MovieClip {Page118} Frame 1 | Symbol 2166 EditableText |
"CR" | Symbol 2171 MovieClip {Page118} Frame 1 | Symbol 2169 EditableText |
"CR" | Symbol 2179 MovieClip {Page119} Frame 1 | Symbol 2174 EditableText |
"CR" | Symbol 2179 MovieClip {Page119} Frame 1 | Symbol 2177 EditableText |
"CR" | Symbol 2187 MovieClip {Page120} Frame 1 | Symbol 2182 EditableText |
"CR" | Symbol 2187 MovieClip {Page120} Frame 1 | Symbol 2185 EditableText |
"CR" | Symbol 2195 MovieClip {Page121} Frame 1 | Symbol 2190 EditableText |
"CR" | Symbol 2195 MovieClip {Page121} Frame 1 | Symbol 2193 EditableText |
"CR" | Symbol 2203 MovieClip {Page122} Frame 1 | Symbol 2198 EditableText |
"CR" | Symbol 2203 MovieClip {Page122} Frame 1 | Symbol 2201 EditableText |
"CR" | Symbol 2211 MovieClip {Page123} Frame 1 | Symbol 2206 EditableText |
"CR" | Symbol 2211 MovieClip {Page123} Frame 1 | Symbol 2209 EditableText |
"CR" | Symbol 2219 MovieClip {Page124} Frame 1 | Symbol 2214 EditableText |
"CR" | Symbol 2219 MovieClip {Page124} Frame 1 | Symbol 2217 EditableText |
"CR" | Symbol 2227 MovieClip {Page125} Frame 1 | Symbol 2222 EditableText |
"CR" | Symbol 2227 MovieClip {Page125} Frame 1 | Symbol 2225 EditableText |
"CR" | Symbol 2235 MovieClip {Page126} Frame 1 | Symbol 2230 EditableText |
"CR" | Symbol 2235 MovieClip {Page126} Frame 1 | Symbol 2233 EditableText |
"CR" | Symbol 2243 MovieClip {Page127} Frame 1 | Symbol 2238 EditableText |
"CR" | Symbol 2243 MovieClip {Page127} Frame 1 | Symbol 2241 EditableText |
"CR" | Symbol 2251 MovieClip {Page128} Frame 1 | Symbol 2246 EditableText |
"CR" | Symbol 2251 MovieClip {Page128} Frame 1 | Symbol 2249 EditableText |
"CR" | Symbol 2260 MovieClip {Page129} Frame 1 | Symbol 2254 EditableText |
"CR" | Symbol 2260 MovieClip {Page129} Frame 1 | Symbol 2257 EditableText |
"CR" | Symbol 2272 MovieClip {Page130} Frame 1 | Symbol 2263 EditableText |
"CR" | Symbol 2272 MovieClip {Page130} Frame 1 | Symbol 2268 EditableText |
"CR" | Symbol 2278 MovieClip {Page131} Frame 1 | Symbol 2275 EditableText |
"CR" | Symbol 2297 MovieClip {Page132} Frame 1 | Symbol 2281 EditableText |
"CR" | Symbol 2297 MovieClip {Page132} Frame 1 | Symbol 2286 EditableText |
"CR" | Symbol 2308 MovieClip {Page133} Frame 1 | Symbol 2300 EditableText |
"CR" | Symbol 2308 MovieClip {Page133} Frame 1 | Symbol 2305 EditableText |
"CR" | Symbol 2317 MovieClip {Page134} Frame 1 | Symbol 2311 EditableText |
"CR" | Symbol 2317 MovieClip {Page134} Frame 1 | Symbol 2314 EditableText |
"CR" | Symbol 2326 MovieClip {Page135} Frame 1 | Symbol 2320 EditableText |
"CR" | Symbol 2326 MovieClip {Page135} Frame 1 | Symbol 2323 EditableText |
"CR" | Symbol 2335 MovieClip {Page136} Frame 1 | Symbol 2329 EditableText |
"CR" | Symbol 2335 MovieClip {Page136} Frame 1 | Symbol 2332 EditableText |
"CR" | Symbol 2344 MovieClip {Page137} Frame 1 | Symbol 2338 EditableText |
"CR" | Symbol 2344 MovieClip {Page137} Frame 1 | Symbol 2341 EditableText |
"CR" | Symbol 2353 MovieClip {Page138} Frame 1 | Symbol 2347 EditableText |
"CR" | Symbol 2353 MovieClip {Page138} Frame 1 | Symbol 2350 EditableText |
"CR" | Symbol 2362 MovieClip {Page139} Frame 1 | Symbol 2356 EditableText |
"CR" | Symbol 2362 MovieClip {Page139} Frame 1 | Symbol 2359 EditableText |
"CR" | Symbol 2371 MovieClip {Page140} Frame 1 | Symbol 2365 EditableText |
"CR" | Symbol 2371 MovieClip {Page140} Frame 1 | Symbol 2368 EditableText |
"CR" | Symbol 2380 MovieClip {Page141} Frame 1 | Symbol 2374 EditableText |
"CR" | Symbol 2380 MovieClip {Page141} Frame 1 | Symbol 2377 EditableText |
"CR" | Symbol 2389 MovieClip {Page142} Frame 1 | Symbol 2383 EditableText |
"CR" | Symbol 2389 MovieClip {Page142} Frame 1 | Symbol 2386 EditableText |
"CR" | Symbol 2398 MovieClip {Page143} Frame 1 | Symbol 2392 EditableText |
"CR" | Symbol 2398 MovieClip {Page143} Frame 1 | Symbol 2395 EditableText |
"CR" | Symbol 2407 MovieClip {Page144} Frame 1 | Symbol 2401 EditableText |
"CR" | Symbol 2407 MovieClip {Page144} Frame 1 | Symbol 2404 EditableText |
"CR" | Symbol 2415 MovieClip {Page145} Frame 1 | Symbol 2410 EditableText |
"CR" | Symbol 2415 MovieClip {Page145} Frame 1 | Symbol 2413 EditableText |
"CR" | Symbol 2424 MovieClip {Page146} Frame 1 | Symbol 2418 EditableText |
"CR" | Symbol 2424 MovieClip {Page146} Frame 1 | Symbol 2421 EditableText |
"CR" | Symbol 2433 MovieClip {Page147} Frame 1 | Symbol 2427 EditableText |
"CR" | Symbol 2433 MovieClip {Page147} Frame 1 | Symbol 2430 EditableText |
"CR" | Symbol 2442 MovieClip {Page148} Frame 1 | Symbol 2436 EditableText |
"CR" | Symbol 2442 MovieClip {Page148} Frame 1 | Symbol 2439 EditableText |
"CR" | Symbol 2450 MovieClip {Page149} Frame 1 | Symbol 2445 EditableText |
"CR" | Symbol 2450 MovieClip {Page149} Frame 1 | Symbol 2448 EditableText |
"CR" | Symbol 2459 MovieClip {Page150} Frame 1 | Symbol 2453 EditableText |
"CR" | Symbol 2459 MovieClip {Page150} Frame 1 | Symbol 2456 EditableText |
"CR" | Symbol 2468 MovieClip {Page151} Frame 1 | Symbol 2462 EditableText |
"CR" | Symbol 2468 MovieClip {Page151} Frame 1 | Symbol 2465 EditableText |
"CR" | Symbol 2478 MovieClip {Page152} Frame 1 | Symbol 2471 EditableText |
"CR" | Symbol 2478 MovieClip {Page152} Frame 1 | Symbol 2475 EditableText |
"CR" | Symbol 2488 MovieClip {Page153} Frame 1 | Symbol 2481 EditableText |
"CR" | Symbol 2488 MovieClip {Page153} Frame 1 | Symbol 2484 EditableText |
"CR" | Symbol 2496 MovieClip {Page154} Frame 1 | Symbol 2491 EditableText |
"CR" | Symbol 2496 MovieClip {Page154} Frame 1 | Symbol 2494 EditableText |
"CR" | Symbol 2505 MovieClip {Page155} Frame 1 | Symbol 2499 EditableText |
"CR" | Symbol 2505 MovieClip {Page155} Frame 1 | Symbol 2502 EditableText |
"CR" | Symbol 2513 MovieClip {Page156} Frame 1 | Symbol 2508 EditableText |
"CR" | Symbol 2513 MovieClip {Page156} Frame 1 | Symbol 2511 EditableText |
"CR" | Symbol 2522 MovieClip {Page157} Frame 1 | Symbol 2516 EditableText |
"CR" | Symbol 2522 MovieClip {Page157} Frame 1 | Symbol 2519 EditableText |
"CR" | Symbol 2532 MovieClip {Page158} Frame 1 | Symbol 2525 EditableText |
"CR" | Symbol 2532 MovieClip {Page158} Frame 1 | Symbol 2528 EditableText |
"CR" | Symbol 2540 MovieClip {Page159} Frame 1 | Symbol 2535 EditableText |
"CR" | Symbol 2540 MovieClip {Page159} Frame 1 | Symbol 2538 EditableText |
"CR" | Symbol 2549 MovieClip {Page160} Frame 1 | Symbol 2543 EditableText |
"CR" | Symbol 2549 MovieClip {Page160} Frame 1 | Symbol 2547 EditableText |
"CR" | Symbol 2558 MovieClip {Page161} Frame 1 | Symbol 2552 EditableText |
"CR" | Symbol 2558 MovieClip {Page161} Frame 1 | Symbol 2555 EditableText |
"CR" | Symbol 2566 MovieClip {Page162} Frame 1 | Symbol 2561 EditableText |
"CR" | Symbol 2566 MovieClip {Page162} Frame 1 | Symbol 2564 EditableText |
"CR" | Symbol 2585 MovieClip {Page163} Frame 1 | Symbol 2569 EditableText |
"CR" | Symbol 2585 MovieClip {Page163} Frame 1 | Symbol 2578 EditableText |
"CR" | Symbol 2594 MovieClip {Page164} Frame 1 | Symbol 2588 EditableText |
"CR" | Symbol 2594 MovieClip {Page164} Frame 1 | Symbol 2592 EditableText |
"CR" | Symbol 2604 MovieClip {Page165} Frame 1 | Symbol 2597 EditableText |
"CR" | Symbol 2604 MovieClip {Page165} Frame 1 | Symbol 2600 EditableText |
"CR" | Symbol 2613 MovieClip {Page166} Frame 1 | Symbol 2607 EditableText |
"CR" | Symbol 2613 MovieClip {Page166} Frame 1 | Symbol 2610 EditableText |
"CR" | Symbol 2621 MovieClip {Page167} Frame 1 | Symbol 2616 EditableText |
"CR" | Symbol 2621 MovieClip {Page167} Frame 1 | Symbol 2619 EditableText |
"CR" | Symbol 2630 MovieClip {Page168} Frame 1 | Symbol 2624 EditableText |
"CR" | Symbol 2630 MovieClip {Page168} Frame 1 | Symbol 2627 EditableText |
"CR" | Symbol 2639 MovieClip {Page169} Frame 1 | Symbol 2633 EditableText |
"CR" | Symbol 2639 MovieClip {Page169} Frame 1 | Symbol 2636 EditableText |
"CR" | Symbol 2648 MovieClip {Page170} Frame 1 | Symbol 2642 EditableText |
"CR" | Symbol 2648 MovieClip {Page170} Frame 1 | Symbol 2645 EditableText |
"CR" | Symbol 2657 MovieClip {Page171} Frame 1 | Symbol 2651 EditableText |
"CR" | Symbol 2657 MovieClip {Page171} Frame 1 | Symbol 2654 EditableText |
"CR" | Symbol 2666 MovieClip {Page172} Frame 1 | Symbol 2660 EditableText |
"CR" | Symbol 2666 MovieClip {Page172} Frame 1 | Symbol 2663 EditableText |
"CR" | Symbol 2674 MovieClip {Page173} Frame 1 | Symbol 2669 EditableText |
"CR" | Symbol 2674 MovieClip {Page173} Frame 1 | Symbol 2672 EditableText |
"CR" | Symbol 2683 MovieClip {Page174} Frame 1 | Symbol 2677 EditableText |
"CR" | Symbol 2683 MovieClip {Page174} Frame 1 | Symbol 2680 EditableText |
"CR" | Symbol 2692 MovieClip {Page175} Frame 1 | Symbol 2686 EditableText |
"CR" | Symbol 2692 MovieClip {Page175} Frame 1 | Symbol 2689 EditableText |
"CR" | Symbol 2700 MovieClip {Page176} Frame 1 | Symbol 2695 EditableText |
"CR" | Symbol 2700 MovieClip {Page176} Frame 1 | Symbol 2698 EditableText |
"CR" | Symbol 2709 MovieClip {Page177} Frame 1 | Symbol 2703 EditableText |
"CR" | Symbol 2709 MovieClip {Page177} Frame 1 | Symbol 2706 EditableText |
"CR" | Symbol 2717 MovieClip {Page178} Frame 1 | Symbol 2712 EditableText |
"CR" | Symbol 2717 MovieClip {Page178} Frame 1 | Symbol 2715 EditableText |
"CR" | Symbol 2726 MovieClip {Page179} Frame 1 | Symbol 2720 EditableText |
"CR" | Symbol 2726 MovieClip {Page179} Frame 1 | Symbol 2723 EditableText |
"CR" | Symbol 2735 MovieClip {Page180} Frame 1 | Symbol 2729 EditableText |
"CR" | Symbol 2735 MovieClip {Page180} Frame 1 | Symbol 2732 EditableText |
"CR" | Symbol 2744 MovieClip {Page181} Frame 1 | Symbol 2738 EditableText |
"CR" | Symbol 2744 MovieClip {Page181} Frame 1 | Symbol 2741 EditableText |
"CR" | Symbol 2753 MovieClip {Page182} Frame 1 | Symbol 2747 EditableText |
"CR" | Symbol 2753 MovieClip {Page182} Frame 1 | Symbol 2750 EditableText |
"CR" | Symbol 2762 MovieClip {Page183} Frame 1 | Symbol 2756 EditableText |
"CR" | Symbol 2762 MovieClip {Page183} Frame 1 | Symbol 2759 EditableText |
"CR" | Symbol 2771 MovieClip {Page184} Frame 1 | Symbol 2765 EditableText |
"CR" | Symbol 2771 MovieClip {Page184} Frame 1 | Symbol 2768 EditableText |
"CR" | Symbol 2780 MovieClip {Page185} Frame 1 | Symbol 2774 EditableText |
"CR" | Symbol 2780 MovieClip {Page185} Frame 1 | Symbol 2777 EditableText |
"CR" | Symbol 2789 MovieClip {Page186} Frame 1 | Symbol 2783 EditableText |
"CR" | Symbol 2789 MovieClip {Page186} Frame 1 | Symbol 2786 EditableText |
"CR" | Symbol 2798 MovieClip {Page187} Frame 1 | Symbol 2792 EditableText |
"CR" | Symbol 2798 MovieClip {Page187} Frame 1 | Symbol 2795 EditableText |
"CR" | Symbol 2807 MovieClip {Page188} Frame 1 | Symbol 2801 EditableText |
"CR" | Symbol 2807 MovieClip {Page188} Frame 1 | Symbol 2804 EditableText |
"CR" | Symbol 2816 MovieClip {Page189} Frame 1 | Symbol 2810 EditableText |
"CR" | Symbol 2816 MovieClip {Page189} Frame 1 | Symbol 2813 EditableText |
"CR" | Symbol 2825 MovieClip {Page190} Frame 1 | Symbol 2819 EditableText |
"CR" | Symbol 2825 MovieClip {Page190} Frame 1 | Symbol 2822 EditableText |
"CR" | Symbol 2834 MovieClip {Page191} Frame 1 | Symbol 2828 EditableText |
"CR" | Symbol 2834 MovieClip {Page191} Frame 1 | Symbol 2831 EditableText |
"CR" | Symbol 2843 MovieClip {Page192} Frame 1 | Symbol 2837 EditableText |
"CR" | Symbol 2843 MovieClip {Page192} Frame 1 | Symbol 2840 EditableText |
"CR" | Symbol 2851 MovieClip {Page193} Frame 1 | Symbol 2846 EditableText |
"CR" | Symbol 2851 MovieClip {Page193} Frame 1 | Symbol 2849 EditableText |
"CR" | Symbol 2860 MovieClip {Page194} Frame 1 | Symbol 2854 EditableText |
"CR" | Symbol 2860 MovieClip {Page194} Frame 1 | Symbol 2857 EditableText |
"CR" | Symbol 2869 MovieClip {Page195} Frame 1 | Symbol 2863 EditableText |
"CR" | Symbol 2869 MovieClip {Page195} Frame 1 | Symbol 2866 EditableText |
"CR" | Symbol 2878 MovieClip {Page196} Frame 1 | Symbol 2872 EditableText |
"CR" | Symbol 2878 MovieClip {Page196} Frame 1 | Symbol 2875 EditableText |
"CR" | Symbol 2887 MovieClip {Page197} Frame 1 | Symbol 2881 EditableText |
"CR" | Symbol 2887 MovieClip {Page197} Frame 1 | Symbol 2884 EditableText |
"CR" | Symbol 2896 MovieClip {Page198} Frame 1 | Symbol 2890 EditableText |
"CR" | Symbol 2896 MovieClip {Page198} Frame 1 | Symbol 2893 EditableText |
"CR" | Symbol 2905 MovieClip {Page199} Frame 1 | Symbol 2899 EditableText |
"CR" | Symbol 2905 MovieClip {Page199} Frame 1 | Symbol 2902 EditableText |
"CR" | Symbol 2914 MovieClip {Page200} Frame 1 | Symbol 2908 EditableText |
"CR" | Symbol 2914 MovieClip {Page200} Frame 1 | Symbol 2911 EditableText |
"CR" | Symbol 2924 MovieClip {Page201} Frame 1 | Symbol 2917 EditableText |
"CR" | Symbol 2924 MovieClip {Page201} Frame 1 | Symbol 2920 EditableText |
"CR" | Symbol 2933 MovieClip {Page202} Frame 1 | Symbol 2927 EditableText |
"CR" | Symbol 2933 MovieClip {Page202} Frame 1 | Symbol 2930 EditableText |
"CR" | Symbol 2942 MovieClip {Page203} Frame 1 | Symbol 2936 EditableText |
"CR" | Symbol 2942 MovieClip {Page203} Frame 1 | Symbol 2939 EditableText |
"CR" | Symbol 2951 MovieClip {Page204} Frame 1 | Symbol 2945 EditableText |
"CR" | Symbol 2951 MovieClip {Page204} Frame 1 | Symbol 2948 EditableText |
"CR" | Symbol 2963 MovieClip {Page205} Frame 1 | Symbol 2954 EditableText |
"CR" | Symbol 2963 MovieClip {Page205} Frame 1 | Symbol 2958 EditableText |
"CR" | Symbol 2972 MovieClip {Page206} Frame 1 | Symbol 2966 EditableText |
"CR" | Symbol 2972 MovieClip {Page206} Frame 1 | Symbol 2969 EditableText |
"CR" | Symbol 2981 MovieClip {Page207} Frame 1 | Symbol 2975 EditableText |
"CR" | Symbol 2981 MovieClip {Page207} Frame 1 | Symbol 2978 EditableText |
"CR" | Symbol 2993 MovieClip {Page208} Frame 1 | Symbol 2984 EditableText |
"CR" | Symbol 2993 MovieClip {Page208} Frame 1 | Symbol 2988 EditableText |
"CR" | Symbol 3008 MovieClip {Page209} Frame 1 | Symbol 2996 EditableText |
"CR" | Symbol 3008 MovieClip {Page209} Frame 1 | Symbol 3000 EditableText |
"CR" | Symbol 3021 MovieClip {Page210} Frame 1 | Symbol 3011 EditableText |
"CR" | Symbol 3021 MovieClip {Page210} Frame 1 | Symbol 3015 EditableText |
"CR" | Symbol 3033 MovieClip {Page211} Frame 1 | Symbol 3024 EditableText |
"CR" | Symbol 3033 MovieClip {Page211} Frame 1 | Symbol 3028 EditableText |
"CR" | Symbol 3042 MovieClip {Page212} Frame 1 | Symbol 3036 EditableText |
"CR" | Symbol 3042 MovieClip {Page212} Frame 1 | Symbol 3039 EditableText |
"CR" | Symbol 3051 MovieClip {Page213} Frame 1 | Symbol 3045 EditableText |
"CR" | Symbol 3051 MovieClip {Page213} Frame 1 | Symbol 3048 EditableText |
"CR" | Symbol 3060 MovieClip {Page214} Frame 1 | Symbol 3054 EditableText |
"CR" | Symbol 3060 MovieClip {Page214} Frame 1 | Symbol 3057 EditableText |
"CR" | Symbol 3069 MovieClip {Page215} Frame 1 | Symbol 3063 EditableText |
"CR" | Symbol 3069 MovieClip {Page215} Frame 1 | Symbol 3066 EditableText |
"CR" | Symbol 3077 MovieClip {Page216} Frame 1 | Symbol 3072 EditableText |
"CR" | Symbol 3077 MovieClip {Page216} Frame 1 | Symbol 3075 EditableText |
"CR" | Symbol 3086 MovieClip {Page217} Frame 1 | Symbol 3080 EditableText |
"CR" | Symbol 3086 MovieClip {Page217} Frame 1 | Symbol 3084 EditableText |
"CR" | Symbol 3095 MovieClip {Page218} Frame 1 | Symbol 3089 EditableText |
"CR" | Symbol 3095 MovieClip {Page218} Frame 1 | Symbol 3092 EditableText |
"CR" | Symbol 3117 MovieClip {Page219} Frame 1 | Symbol 3098 EditableText |
"CR" | Symbol 3117 MovieClip {Page219} Frame 1 | Symbol 3102 EditableText |
"CR" | Symbol 3125 MovieClip {Page220} Frame 1 | Symbol 3120 EditableText |
"CR" | Symbol 3125 MovieClip {Page220} Frame 1 | Symbol 3123 EditableText |
"CR" | Symbol 3136 MovieClip {Page221} Frame 1 | Symbol 3128 EditableText |
"CR" | Symbol 3136 MovieClip {Page221} Frame 1 | Symbol 3133 EditableText |
"CR" | Symbol 3147 MovieClip {Page222} Frame 1 | Symbol 3139 EditableText |
"CR" | Symbol 3147 MovieClip {Page222} Frame 1 | Symbol 3142 EditableText |
"CR" | Symbol 3156 MovieClip {Page223} Frame 1 | Symbol 3150 EditableText |
"CR" | Symbol 3156 MovieClip {Page223} Frame 1 | Symbol 3153 EditableText |
"CR" | Symbol 3165 MovieClip {Page224} Frame 1 | Symbol 3159 EditableText |
"CR" | Symbol 3165 MovieClip {Page224} Frame 1 | Symbol 3162 EditableText |
"CR" | Symbol 3173 MovieClip {Page225} Frame 1 | Symbol 3168 EditableText |
"CR" | Symbol 3173 MovieClip {Page225} Frame 1 | Symbol 3171 EditableText |
"CR" | Symbol 3182 MovieClip {Page226} Frame 1 | Symbol 3176 EditableText |
"CR" | Symbol 3182 MovieClip {Page226} Frame 1 | Symbol 3179 EditableText |
"CR" | Symbol 3191 MovieClip {Page227} Frame 1 | Symbol 3185 EditableText |
"CR" | Symbol 3191 MovieClip {Page227} Frame 1 | Symbol 3188 EditableText |
"CR" | Symbol 3200 MovieClip {Page228} Frame 1 | Symbol 3194 EditableText |
"CR" | Symbol 3200 MovieClip {Page228} Frame 1 | Symbol 3197 EditableText |
"CR" | Symbol 3212 MovieClip {Page229} Frame 1 | Symbol 3203 EditableText |
"CR" | Symbol 3212 MovieClip {Page229} Frame 1 | Symbol 3207 EditableText |
"CR" | Symbol 3220 MovieClip {Page230} Frame 1 | Symbol 3215 EditableText |
"CR" | Symbol 3220 MovieClip {Page230} Frame 1 | Symbol 3218 EditableText |
"CR" | Symbol 3228 MovieClip {Page231} Frame 1 | Symbol 3223 EditableText |
"CR" | Symbol 3228 MovieClip {Page231} Frame 1 | Symbol 3226 EditableText |
"CR" | Symbol 3237 MovieClip {Page232} Frame 1 | Symbol 3231 EditableText |
"CR" | Symbol 3237 MovieClip {Page232} Frame 1 | Symbol 3234 EditableText |
"CR" | Symbol 3245 MovieClip {Page233} Frame 1 | Symbol 3240 EditableText |
"CR" | Symbol 3245 MovieClip {Page233} Frame 1 | Symbol 3243 EditableText |
"CR" | Symbol 3254 MovieClip {Page234} Frame 1 | Symbol 3248 EditableText |
"CR" | Symbol 3254 MovieClip {Page234} Frame 1 | Symbol 3252 EditableText |
"CR" | Symbol 3263 MovieClip {Page235} Frame 1 | Symbol 3257 EditableText |
"CR" | Symbol 3263 MovieClip {Page235} Frame 1 | Symbol 3260 EditableText |
"CR" | Symbol 3271 MovieClip {Page236} Frame 1 | Symbol 3266 EditableText |
"CR" | Symbol 3271 MovieClip {Page236} Frame 1 | Symbol 3269 EditableText |
"CR" | Symbol 3284 MovieClip {Page237} Frame 1 | Symbol 3274 EditableText |
"CR" | Symbol 3284 MovieClip {Page237} Frame 1 | Symbol 3278 EditableText |
"CR" | Symbol 3293 MovieClip {Page238} Frame 1 | Symbol 3287 EditableText |
"CR" | Symbol 3293 MovieClip {Page238} Frame 1 | Symbol 3290 EditableText |
"CR" | Symbol 3302 MovieClip {Page239} Frame 1 | Symbol 3296 EditableText |
"CR" | Symbol 3302 MovieClip {Page239} Frame 1 | Symbol 3299 EditableText |
"CR" | Symbol 3313 MovieClip {Page240} Frame 1 | Symbol 3305 EditableText |
"CR" | Symbol 3313 MovieClip {Page240} Frame 1 | Symbol 3308 EditableText |
"CR" | Symbol 3322 MovieClip {Page241} Frame 1 | Symbol 3316 EditableText |
"CR" | Symbol 3322 MovieClip {Page241} Frame 1 | Symbol 3319 EditableText |
"CR" | Symbol 3331 MovieClip {Page242} Frame 1 | Symbol 3325 EditableText |
"CR" | Symbol 3331 MovieClip {Page242} Frame 1 | Symbol 3328 EditableText |
"CR" | Symbol 3340 MovieClip {Page243} Frame 1 | Symbol 3334 EditableText |
"CR" | Symbol 3340 MovieClip {Page243} Frame 1 | Symbol 3337 EditableText |
"CR" | Symbol 3349 MovieClip {Page244} Frame 1 | Symbol 3343 EditableText |
"CR" | Symbol 3349 MovieClip {Page244} Frame 1 | Symbol 3346 EditableText |
"CR" | Symbol 3358 MovieClip {Page245} Frame 1 | Symbol 3352 EditableText |
"CR" | Symbol 3358 MovieClip {Page245} Frame 1 | Symbol 3355 EditableText |
"CR" | Symbol 3367 MovieClip {Page246} Frame 1 | Symbol 3361 EditableText |
"CR" | Symbol 3367 MovieClip {Page246} Frame 1 | Symbol 3364 EditableText |
"CR" | Symbol 3375 MovieClip {Page247} Frame 1 | Symbol 3370 EditableText |
"CR" | Symbol 3375 MovieClip {Page247} Frame 1 | Symbol 3373 EditableText |
"CR" | Symbol 3385 MovieClip {Page248} Frame 1 | Symbol 3378 EditableText |
"CR" | Symbol 3385 MovieClip {Page248} Frame 1 | Symbol 3383 EditableText |
"CR" | Symbol 3391 MovieClip {Page249} Frame 1 | Symbol 3388 EditableText |
"CR" | Symbol 3397 MovieClip {Page250} Frame 1 | Symbol 3394 EditableText |
"CR" | Symbol 3403 MovieClip {Page251} Frame 1 | Symbol 3400 EditableText |
"CR" | Symbol 3418 MovieClip {Page252} Frame 1 | Symbol 3406 EditableText |
"CR" | Symbol 3418 MovieClip {Page252} Frame 1 | Symbol 3412 EditableText |
"CR" | Symbol 3428 MovieClip {Page253} Frame 1 | Symbol 3421 EditableText |
"CR" | Symbol 3428 MovieClip {Page253} Frame 1 | Symbol 3426 EditableText |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS3. |
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS3. |
ScriptLimits (65) | Timeline Frame 1 | MaxRecursionDepth: 256, ScriptTimeout: 65535 seconds |
|