blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
beea67f9ed9db18530ec7f9683fb647420531f1d | b23687e2eb02bcb6d0f581b7975f42c496faeda1 | /Distortion_in_CT_system.sce | e3f0123b5039a3bf6c24645133366847ddc26e68 | [
"MIT"
] | permissive | harvishj/Scilab | bd3fbd3e679eb07aa088ff2bab40d491c6499770 | 9daada512f42ea6f52199a34d6b18e64b107af94 | refs/heads/master | 2021-07-14T15:06:03.621923 | 2020-10-05T06:35:43 | 2020-10-05T06:35:43 | 213,328,984 | 1 | 3 | MIT | 2020-10-05T06:35:44 | 2019-10-07T08:16:52 | Scilab | UTF-8 | Scilab | false | false | 1,099 | sce | Distortion_in_CT_system.sce | clear;
clf;
dt = 1/10000;
t = -0.01:dt:0.01;
x1 = sin(200.*(%pi).*t);
x2 = sin(400.*(%pi).*t);
x3 = sin(200.*(%pi).*t) + sin(400.*(%pi).*t);
A1 = 10; A2=20; t1 = 2; t2 = 3;
y1 = A1.*sin(200.*(%pi).*(t-t1));
y2 = A2.*sin(200.*(%pi).*(t-t2));
y3 = A1.*sin(200.*(%pi).*(t-t1)) + A2.*sin(200.*(%pi).*(t-t2));
xgrid(1);
subplot(3,2,1);
plot(t,x1);
title("Wave 1", "fontsize", 3);
xlabel("T","fontsize",3);
ylabel("X","fontsize",3);
xgrid(1);
subplot(3,2,2);
plot(t,x2);
title("Wave 2", "fontsize", 3);
xlabel("T","fontsize",3);
ylabel("X","fontsize",3);
xgrid(1);
subplot(3,2,3);
plot(t,x3);
title("Wave 1 + Wave 2", "fontsize", 3);
xlabel("T","fontsize",3);
ylabel("X","fontsize",3);
xgrid(1);
subplot(3,2,4);
plot(t,y1);
title("Wave 1 + Gain", "fontsize", 3);
xlabel("T","fontsize",3);
ylabel("X","fontsize",3);
xgrid(1);
subplot(3,2,5);
plot(t,y2);
title("Wave 2 + Gain", "fontsize", 3);
xlabel("T","fontsize",3);
ylabel("X","fontsize",3);
xgrid(1);
subplot(3,2,6);
plot(t,y3);
xgrid(1);
title("Wave 1 + Wave 2", "fontsize", 3);
xlabel("T","fontsize",3);
ylabel("X","fontsize",3);
|
f724edb75b405fb86a23db3bac9221778ec8742c | 449d555969bfd7befe906877abab098c6e63a0e8 | /191/CH5/EX5.5/Example5_5.sce | b857982e456225902f4776b103fa53b0a4f82a18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 796 | sce | Example5_5.sce | //Construction of Forward Difference Table
close();
clear;
clc;
x = poly(0,'x');
fx = (x-1)*(x+5)/((x+2)*(x+1));
xi = linspace(0.0,0.8,9);
x0 = 0;
h = 0.1;
format('v',9);
// values of function at different xi's
fi = horner(fx , xi);
// First order difference
for j = 1:8
delta1_fi(j) = fi(j+1) - fi(j);
end
// Second order difference
for j = 1:7
delta2_fi(j) = delta1_fi(j+1) - delta1_fi(j);
end
// Third order difference
for j = 1:6
delta3_fi(j) = delta2_fi(j+1) - delta2_fi(j);
end
// Fourth order difference
for j = 1:5
delta4_fi(j) = delta3_fi(j+1) - delta3_fi(j);
end
disp(fi , 'Values of f(x) : ')
disp(delta1_fi , 'First Order Difference :')
disp(delta2_fi , 'Second Order Difference :')
disp(delta3_fi , 'Third Order Difference :')
disp(delta4_fi , 'Fourth Order Difference :')
|
96fdee596567ce6700c95b24cd9f75dd1b8fe96f | 390607bf53511126b490b4c673c8dab443cfacb6 | /qpb/chs11-15_code/sole2.tst | 473833b1dcca2265aacd326639958bda527cc879 | [] | no_license | terryjbates/python3-oo-programming | bfb9f8f90c76202830bce17ee89930bb0db8e0b2 | 87e96168f70217b723b4332e36ef9c838e070732 | refs/heads/master | 2020-04-05T14:37:48.334913 | 2016-09-03T20:23:41 | 2016-09-03T20:23:41 | 23,949,787 | 8 | 4 | null | null | null | null | UTF-8 | Scilab | false | false | 72 | tst | sole2.tst | ## sole2.tst: more test data for the sole function
12 15 0
##
100 100 0
|
d145aba857db3da42a929a6e095ccfc1bbf24c45 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3683/CH1/EX1.8/Ex1_8.sce | 4d58db7462a5130ab454e1908b5ba8d71e3f60ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 788 | sce | Ex1_8.sce | b=250//width, in mm
D=500//overall depth, in mm
Ast=4*.785*22^2//four 22 mm dia bars, in sq mm
cover=25//in mm
d=D-cover//effective depth, in mm
l=5//effective span, in m
sigma_cbc=5//in MPa
sigma_st=190//in MPa
m=18.66//modular ratio
//to find critical depth of neutral axis
Xc=d/(1+sigma_st/(m*sigma_cbc))//in mm
//to find actual depth of neutral axis using b(x^2)/2=mAst(d-x), which becomes of the form px^2+qx+r=0
p=b/2
q=m*Ast
r=-m*Ast*d
x=(-q+sqrt(q^2-4*p*r))/(2*p)//in mm
//as x>Xc, beam is over-reinforced
Mr=b*sigma_cbc*x/2*(d-x/3)//in N-mm
self_weight=25*(b/10^3)*(D/10^3)//in kN/m
M=Mr/10^6-self_weight*l^2/8//moment of resistance available for external load, in kN-m
W=4*M/l//in kN
mprintf("The concentrated load the beam can support at centre=%f kN",W)
|
aa74f06fb05e0b69607395bd510a32ccfd3dde4a | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Skeet Pistol.sce | 49ee8efcec08123108150f73d6054e9bc4010679 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 65,132 | sce | Skeet Pistol.sce | Name=Skeet Pistol
PlayerCharacters=Skeet Challenger
BotCharacters=Skeet Target.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Skeet Challenger
AddedBots=Skeet Target.bot;Skeet Target.bot;Skeet Target.bot;Skeet Target.bot
PlayerMaxLives=0
BotMaxLives=0;0;0;0
PlayerTeam=1
BotTeams=2;2;2;2
MapName=skeet_field.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.0
ScorePerKill=1.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=
WeaponHeroTag=Semi-auto
DifficultyTag=3
AuthorsTag=pleasewait, Cody, Sackboy_Clank5
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=true
Description=Small parabolic motion targets move to both sides of the map. Shoot them, try not to miss and have to reload!
GameVersion=2.0.2.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=Skeet Target
DodgeProfileNames=Skeet Direction
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=100.0
DodgeProfileMinChangeTime=100.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Skeet Target
SeeThroughWalls=true
NoDodging=false
NoAiming=true
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=Skeet Challenger
MaxHealth=100.0
WeaponProfileNames=pistol;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=0.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=72.0
MainBBRadius=12.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Skeet Target
MaxHealth=80.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=0.0
Gravity=1.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=256.0
MainBBType=Spheroid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=0.3
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=320.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Skeet Movement.abilmov;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=true
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=1.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=Skeet Direction
MaxTargetDistance=100000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.01
MaxLRTimeChange=0.01
MinFBTimeChange=0.01
MaxFBTimeChange=0.01
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=10000.0
RightStrafeTimeMult=10000.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.1
BlockedMovementReactionMax=0.1
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Weapon Profile]
Name=pistol
Type=Hitscan
ShotsPerClick=1
DamagePerShot=80.0
KnockbackFactor=4.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=3
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=2
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=None
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Movement Ability Profile]
Name=Skeet Movement
MaxCharges=1.0
ChargeTimer=2.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.0
FullyAuto=false
AbilityDuration=0.0
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=480.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=640.0
EndVelocityFactor=1.0
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=-40.0
AIUseInCombat=true
AIUseOutOfCombat=true
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=0.01
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=1000000.0
AIMaxTargFOV=360.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-73.000000 240.000000 320.000000
-308.000000 240.000000 464.000000
-129.000000 240.000000 200.000000
-404.000000 256.000000 368.000000
-129.000000 256.000000 200.000000
-404.000000 240.000000 368.000000
-308.000000 256.000000 464.000000
-73.000000 256.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
256.000000 256.000000 288.000000
-66.000000 256.000000 335.000000
256.000000 256.000000 272.000000
-73.000000 272.000000 320.000000
256.000000 272.000000 272.000000
-73.000000 256.000000 320.000000
-66.000000 272.000000 335.000000
256.000000 272.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-66.000000 256.000000 335.000000
-296.000000 256.000000 476.000000
-73.000000 256.000000 320.000000
-308.000000 272.000000 464.000000
-73.000000 272.000000 320.000000
-308.000000 256.000000 464.000000
-296.000000 272.000000 476.000000
-66.000000 272.000000 335.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
256.000000 256.000000 144.000000
-129.000000 256.000000 200.000000
256.000000 256.000000 128.000000
-136.000000 272.000000 185.000000
256.000000 272.000000 128.000000
-136.000000 256.000000 185.000000
-129.000000 272.000000 200.000000
256.000000 272.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
-129.000000 256.000000 200.000000
-404.000000 256.000000 368.000000
-136.000000 256.000000 185.000000
-416.000000 272.000000 356.000000
-136.000000 272.000000 185.000000
-416.000000 256.000000 356.000000
-404.000000 272.000000 368.000000
-129.000000 272.000000 200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
641.000000 240.000000 200.000000
916.000000 240.000000 368.000000
585.000000 240.000000 320.000000
820.000000 256.000000 464.000000
585.000000 256.000000 320.000000
820.000000 240.000000 464.000000
916.000000 256.000000 368.000000
641.000000 256.000000 200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
256.000000 256.000000 272.000000
585.000000 256.000000 320.000000
256.000000 256.000000 288.000000
578.000000 272.000000 335.000000
256.000000 272.000000 288.000000
578.000000 256.000000 335.000000
585.000000 272.000000 320.000000
256.000000 272.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
585.000000 256.000000 320.000000
820.000000 256.000000 464.000000
578.000000 256.000000 335.000000
808.000000 272.000000 476.000000
578.000000 272.000000 335.000000
808.000000 256.000000 476.000000
820.000000 272.000000 464.000000
585.000000 272.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
256.000000 256.000000 128.000000
648.000000 256.000000 185.000000
256.000000 256.000000 144.000000
641.000000 272.000000 200.000000
256.000000 272.000000 144.000000
641.000000 256.000000 200.000000
648.000000 272.000000 185.000000
256.000000 272.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
648.000000 256.000000 185.000000
928.000000 256.000000 356.000000
641.000000 256.000000 200.000000
916.000000 272.000000 368.000000
641.000000 272.000000 200.000000
916.000000 256.000000 368.000000
928.000000 272.000000 356.000000
648.000000 272.000000 185.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
616.000000 776.000000 1032.000000
1152.000000 776.000000 1032.000000
1152.000000 776.000000 1016.000000
616.000000 776.000000 1016.000000
616.000000 -248.000000 1032.000000
1152.000000 -248.000000 1032.000000
1152.000000 -248.000000 1016.000000
616.000000 -248.000000 1016.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-640.000000 776.000000 1032.000000
-104.000000 776.000000 1032.000000
-104.000000 776.000000 1016.000000
-640.000000 776.000000 1016.000000
-640.000000 -248.000000 1032.000000
-104.000000 -248.000000 1032.000000
-104.000000 -248.000000 1016.000000
-640.000000 -248.000000 1016.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-584.000000 -248.000000 641.000000
-640.000000 -248.000000 1016.000000
-569.000000 -248.000000 648.000000
-624.000000 776.000000 1016.000000
-569.000000 776.000000 648.000000
-624.000000 -248.000000 1016.000000
-640.000000 776.000000 1016.000000
-584.000000 776.000000 641.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-569.000000 -248.000000 648.000000
-624.000000 -248.000000 1016.000000
-449.000000 -248.000000 704.000000
-496.000000 776.000000 1016.000000
-449.000000 776.000000 704.000000
-496.000000 -248.000000 1016.000000
-624.000000 776.000000 1016.000000
-569.000000 776.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-449.000000 -248.000000 704.000000
-496.000000 -248.000000 1016.000000
-434.000000 -248.000000 711.000000
-480.000000 776.000000 1016.000000
-434.000000 776.000000 711.000000
-480.000000 -248.000000 1016.000000
-496.000000 776.000000 1016.000000
-449.000000 776.000000 704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
946.000000 -248.000000 711.000000
992.000000 -248.000000 1016.000000
961.000000 -248.000000 704.000000
1008.000000 776.000000 1016.000000
961.000000 776.000000 704.000000
1008.000000 -248.000000 1016.000000
992.000000 776.000000 1016.000000
946.000000 776.000000 711.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
961.000000 -248.000000 704.000000
1008.000000 -248.000000 1016.000000
1081.000000 -248.000000 648.000000
1136.000000 776.000000 1016.000000
1081.000000 776.000000 648.000000
1136.000000 -248.000000 1016.000000
1008.000000 776.000000 1016.000000
961.000000 776.000000 704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
1081.000000 -248.000000 648.000000
1136.000000 -248.000000 1016.000000
1096.000000 -248.000000 641.000000
1152.000000 776.000000 1016.000000
1096.000000 776.000000 641.000000
1152.000000 -248.000000 1016.000000
1136.000000 776.000000 1016.000000
1081.000000 776.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-640.000000 792.000000 1032.000000
1152.000000 792.000000 1032.000000
1152.000000 792.000000 8.000000
-640.000000 792.000000 8.000000
-640.000000 776.000000 1032.000000
1152.000000 776.000000 1032.000000
1152.000000 776.000000 8.000000
-640.000000 776.000000 8.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
1152.000000 776.000000 1032.000000
1168.000000 776.000000 1032.000000
1168.000000 776.000000 8.000000
1152.000000 776.000000 8.000000
1152.000000 -248.000000 1032.000000
1168.000000 -248.000000 1032.000000
1168.000000 -248.000000 8.000000
1152.000000 -248.000000 8.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-656.000000 776.000000 1032.000000
-640.000000 776.000000 1032.000000
-640.000000 776.000000 8.000000
-656.000000 776.000000 8.000000
-656.000000 -248.000000 1032.000000
-640.000000 -248.000000 1032.000000
-640.000000 -248.000000 8.000000
-656.000000 -248.000000 8.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-640.000000 -248.000000 1032.000000
1152.000000 -248.000000 1032.000000
1152.000000 -248.000000 8.000000
-640.000000 -248.000000 8.000000
-640.000000 -264.000000 1032.000000
1152.000000 -264.000000 1032.000000
1152.000000 -264.000000 8.000000
-640.000000 -264.000000 8.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-640.000000 776.000000 8.000000
1152.000000 776.000000 8.000000
1152.000000 776.000000 -8.000000
-640.000000 776.000000 -8.000000
-640.000000 -248.000000 8.000000
1152.000000 -248.000000 8.000000
1152.000000 -248.000000 -8.000000
-640.000000 -248.000000 -8.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 240.000000 272.000000
-73.000000 240.000000 320.000000
256.000000 240.000000 144.000000
-129.000000 256.000000 200.000000
256.000000 256.000000 144.000000
-129.000000 240.000000 200.000000
-73.000000 256.000000 320.000000
256.000000 256.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
256.000000 240.000000 144.000000
641.000000 240.000000 200.000000
256.000000 240.000000 272.000000
585.000000 256.000000 320.000000
256.000000 256.000000 272.000000
585.000000 240.000000 320.000000
641.000000 256.000000 200.000000
256.000000 256.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-129.000000 272.000000 200.000000
-404.000000 272.000000 368.000000
-136.000000 272.000000 185.000000
-416.000000 776.000000 356.000000
-136.000000 776.000000 185.000000
-416.000000 272.000000 356.000000
-404.000000 776.000000 368.000000
-129.000000 776.000000 200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-66.000000 272.000000 335.000000
-296.000000 272.000000 476.000000
-73.000000 272.000000 320.000000
-308.000000 776.000000 464.000000
-73.000000 776.000000 320.000000
-308.000000 272.000000 464.000000
-296.000000 776.000000 476.000000
-66.000000 776.000000 335.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
256.000000 272.000000 144.000000
-129.000000 272.000000 200.000000
256.000000 272.000000 128.000000
-136.000000 776.000000 185.000000
256.000000 776.000000 128.000000
-136.000000 272.000000 185.000000
-129.000000 776.000000 200.000000
256.000000 776.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
256.000000 272.000000 288.000000
-66.000000 272.000000 335.000000
256.000000 272.000000 272.000000
-73.000000 776.000000 320.000000
256.000000 776.000000 272.000000
-73.000000 272.000000 320.000000
-66.000000 776.000000 335.000000
256.000000 776.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
256.000000 272.000000 128.000000
648.000000 272.000000 185.000000
256.000000 272.000000 144.000000
641.000000 776.000000 200.000000
256.000000 776.000000 144.000000
641.000000 272.000000 200.000000
648.000000 776.000000 185.000000
256.000000 776.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
256.000000 272.000000 272.000000
585.000000 272.000000 320.000000
256.000000 272.000000 288.000000
578.000000 776.000000 335.000000
256.000000 776.000000 288.000000
578.000000 272.000000 335.000000
585.000000 776.000000 320.000000
256.000000 776.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
648.000000 272.000000 185.000000
928.000000 272.000000 356.000000
641.000000 272.000000 200.000000
916.000000 776.000000 368.000000
641.000000 776.000000 200.000000
916.000000 272.000000 368.000000
928.000000 776.000000 356.000000
648.000000 776.000000 185.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
585.000000 272.000000 320.000000
820.000000 272.000000 464.000000
578.000000 272.000000 335.000000
808.000000 776.000000 476.000000
578.000000 776.000000 335.000000
808.000000 272.000000 476.000000
820.000000 776.000000 464.000000
585.000000 776.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-104.000000 776.000000 1032.000000
616.000000 776.000000 1032.000000
616.000000 776.000000 1016.000000
-104.000000 776.000000 1016.000000
-104.000000 -248.000000 1032.000000
616.000000 -248.000000 1032.000000
616.000000 -248.000000 1016.000000
-104.000000 -248.000000 1016.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
752.000000 792.000000 1160.000000
768.000000 792.000000 1160.000000
768.000000 792.000000 1032.000000
752.000000 792.000000 1032.000000
752.000000 -264.000000 1160.000000
768.000000 -264.000000 1160.000000
768.000000 -264.000000 1032.000000
752.000000 -264.000000 1032.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-256.000000 792.000000 1160.000000
-240.000000 792.000000 1160.000000
-240.000000 792.000000 1032.000000
-256.000000 792.000000 1032.000000
-256.000000 -264.000000 1160.000000
-240.000000 -264.000000 1160.000000
-240.000000 -264.000000 1032.000000
-256.000000 -264.000000 1032.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-404.000000 -248.000000 368.000000
-569.000000 -248.000000 648.000000
-416.000000 -248.000000 356.000000
-584.000000 776.000000 641.000000
-416.000000 776.000000 356.000000
-584.000000 -248.000000 641.000000
-569.000000 776.000000 648.000000
-404.000000 776.000000 368.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 structural/dev/dev_grey128
brush
vertices
-296.000000 -248.000000 476.000000
-434.000000 -248.000000 711.000000
-308.000000 -248.000000 464.000000
-449.000000 776.000000 704.000000
-308.000000 776.000000 464.000000
-449.000000 -248.000000 704.000000
-434.000000 776.000000 711.000000
-296.000000 776.000000 476.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 structural/dev/dev_grey128
brush
vertices
-308.000000 -248.000000 464.000000
-449.000000 -248.000000 704.000000
-404.000000 -248.000000 368.000000
-569.000000 776.000000 648.000000
-404.000000 776.000000 368.000000
-569.000000 -248.000000 648.000000
-449.000000 776.000000 704.000000
-308.000000 776.000000 464.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
820.000000 -248.000000 464.000000
961.000000 -248.000000 704.000000
808.000000 -248.000000 476.000000
946.000000 776.000000 711.000000
808.000000 776.000000 476.000000
946.000000 -248.000000 711.000000
961.000000 776.000000 704.000000
820.000000 776.000000 464.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
928.000000 -248.000000 356.000000
1096.000000 -248.000000 641.000000
916.000000 -248.000000 368.000000
1081.000000 776.000000 648.000000
916.000000 776.000000 368.000000
1081.000000 -248.000000 648.000000
1096.000000 776.000000 641.000000
928.000000 776.000000 356.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 structural/dev/dev_grey128
brush
vertices
916.000000 -248.000000 368.000000
1081.000000 -248.000000 648.000000
820.000000 -248.000000 464.000000
961.000000 776.000000 704.000000
820.000000 776.000000 464.000000
961.000000 -248.000000 704.000000
1081.000000 776.000000 648.000000
916.000000 776.000000 368.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 256.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 136.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 152.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 168.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 184.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 200.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 216.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 232.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 248.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 264.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 280.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 296.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 312.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 328.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 344.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 360.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 120.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 104.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 88.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 72.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 56.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 40.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 24.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 8.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 -8.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 -24.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 -40.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 -56.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 -72.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 704.000000 -88.000000 1072.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 136.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 152.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 168.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 184.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 200.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 216.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 232.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 248.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 264.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 280.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 296.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 312.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 328.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 344.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 360.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 120.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 104.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 88.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 72.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 56.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 40.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 24.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 8.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 -8.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 -24.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 -40.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 -56.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 -72.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -192.000000 -88.000000 1104.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
e495686100455743265fceeb67ba8136e0701bf4 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096.zip/Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096/CH1/EX1.54/ex_1_54.sce | 64c03d57017694aba7c58cf70ca396cd8e1c7d6e | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 403 | sce | ex_1_54.sce | errcatch(-1,"stop");mode(2);//Example 1.54://readings
;
;
x=25-21.9;//in mm
r=2.1;//probable error
SD=r/0.6745;//standard deviation
y=x/SD;//ratio
NR=2*0.3413*100;//no. of readings having deviation with in 3.1mm
NR1=100-NR;//no. of readings EXCEEDING deviation OF 3.1mm
nor= round(NR1/2);// noumber of readings having deviation of 3.1mm
disp(nor,"number of readings having deviation of 3.1mm")
exit();
|
7f6754398acb25b4e6b623db8452dab873058040 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3535/CH10/EX10.1/Ex10_1.sce | 0b818b3c7371b8c00a81d8f3d5f0bd7b799795fe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 309 | sce | Ex10_1.sce | //Chapter 10, Example 10.1, Page 280
clc
clear
// Thermal utilization factor
Summation = ((0.0055*103.4)+(0.720*687)+(99.2745*2.73))/100
sigma = 0.0034
f = 7.662/(7.662+(sigma*450))
printf("Total thermal macroscopic = %f N^U cm^1\n",Summation)
printf(" f = %f \n",f)
// Answer may vary due to round off error
|
9fe0a59a590f936b2e9b9eef2d8a3ba58e043064 | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /Positive_Negative_test/Netezza-Base-SimUniVariate/FLSimChiSq-NZ-02.tst | 249f72aa3aab47cb2655686a8e33eaf7917693b7 | [] | no_license | kamleshm/intern_fuzzy | c2dd079bf08bede6bca79af898036d7a538ab4e2 | aaef3c9dc9edf3759ef0b981597746d411d05d34 | refs/heads/master | 2021-01-23T06:25:46.162332 | 2017-07-12T07:12:25 | 2017-07-12T07:12:25 | 93,021,923 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,263 | tst | FLSimChiSq-NZ-02.tst |
-- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Netezza
--
-- Copyright (c): 2014 Fuzzy Logix, LLC
--
-- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC.
-- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC.
-- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade
-- secret or copyright law. Dissemination of this information or reproduction of this material is
-- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC.
--
--
-- Functional Test Specifications:
--
-- Test Category: Simulate Univariate
--
-- Test Unit Number: FLSimChiSq-NZ-02
--
-- Name(s): FLSimChiSq
--
-- Description: Scalar function which returns the density of a Chi-squared distribution
--
-- Applications:
--
-- Signature: FLSimChiSq(Q,DF)
--
-- Parameters: See Documentation
--
-- Return value: Double Precision
--
-- Last Updated: 12-24-2014
--
-- Author: <Zhi.Wang@fuzzyl.com>, <Anurag.Reddy@fuzzyl.com>
--
-- BEGIN: TEST SCRIPT
--.run file=../PulsarLogOn.sql
-- BEGIN: POSITIVE TEST(s)
-- JIRA TD-8
SELECT FLSimChiSq(1000,6.432);
-- END: POSITIVE TEST(s)
-- END: TEST SCRIPT |
c18be786cd47cc415ad688250e24a418dddf9e8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2168/CH8/EX8.6/Chapter8_example6.sce | 525b51f333d78601646d49c406cabe1b2ca20b95 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 720 | sce | Chapter8_example6.sce | clc
clear
//Input data
//C + O2 -> CO2
// 12 + 32 -> 44
C=12//Molecular weight of carbon
O2=32//Molecular weight of O2
CO2=44//Molecular weight of CO2
N2=28//Molecular weight of N2
//Calculations
wair=(O2/C)*(100/23)//Air required per kg of C in kg
wN2=(O2/C)*(77/23)//N2 associated with the air in kg
pCO2=(CO2/C)/CO2//Parts by volume/k for CO2
pN2=(wN2/N2)//Parts by volume/k for N2
Tv=(pCO2+pN2)//Total parts by volume
ppCO2=(pCO2/Tv)*100//Percentage volume of CO2
ppN2=(pN2/Tv)*100//Percentage volume of N2
//Output
printf('The volumetric analysis of the flue gas when pure carbon is burnt with a minimum quantity of air is given by \n CO2 -> %3.1f percent \n N2 -> %3.1f percent',ppCO2,ppN2)
|
0a1a0249b13f150f0b67442275a41a6452534e2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH8/EX8.4/Ex8_4.sce | 5721e7a993810a1732afaf72fa9ecd41cc3be1b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 974 | sce | Ex8_4.sce | //Example 8_4
clc;clear;funcprot(0);
// Given values
P=1;// atm
T=35;// degree celsius
L=150;// m
h_L=20;// m
v=0.35;// m^3/s
g=9.81;// m/s^2
//Properties
rho=1.145;// kg/m^3
mu=1.895*10^-5;// kg/m.s
nu=1.655*10^-5;// m^2/s
//Calculation
// V=y(1); Re=y(2); f=y(3);D=y(4)
function[X] = Diameter(y)
X(1)=(v/(%pi*(y(4)^2)/4))-y(1);
X(2)=((y(1)*y(4))/(nu))-y(2);
X(3)=(-2.0*log10(2.51/(y(2)*sqrt(y(3)))))-(1/sqrt(y(3)));
X(4)=(y(3)*(L/(y(4))*((y(1)^2)/(2*g))))-h_L;
endfunction
y=[1 100000 0.01 0.1];
z=fsolve(y,Diameter);
V=z(1);// m/s
Re=z(2);// Reynolds number
f=z(3);
D=z(4);// m
printf('The minimum diameter of the duct,D=%0.3f m\n',D);
//The diameter can also be determined directly from the third Swamee–Jain formula to be
y=0;
D=0.66*(((y^1.25*((L*v^2)/(g*h_L))^4.75))+(nu*v^9.4*(L/(g*h_L))^5.2))^0.04;
printf('The diameter can also be determined directly from the third Swamee–Jain formula to be D=%0.3f m\n',D);
|
09f537b7c874fb0aab7250ddd5300d0bde1ca128 | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH22/EX22.2/Example22_2.sce | ff3d988c55f287f4c6beff5df74fae4252ef7032 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 412 | sce | Example22_2.sce | exec('electrostatics.sci', -1)
//Given that
q = 1 //(say)
q1 = 8*q
q2 = -2*q
L = 1 //(say)
x = L
//Sample Problem 22-2
printf("**Sample Problem 22-2**\n")
//let the distance of proton from q1 is y
//We know that y>L
y = poly(0, 'y')
F1 = coulomb(q1, e, y)
F2 = coulomb(q2, e, y-L)
p = F1 + F2
r = roots(denom(inv(p)))
printf("the proton should be placed at a distance %1.1fL from q1", r(2)) |
9d2f8f6ba168ea9784a064911030835973af9900 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH21/EX21.12/EX21_12.sce | c829e9b10ca2a0fa0a88ba3ac87d209891c66f51 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | EX21_12.sce | //Finding of Pressure of water
//Given
W=490500;
Fr=39240;
d=40;
//To Find
A=(%pi/4)*d^2;
Wu=W+Fr;
P1=Wu/A;
Wd=W-Fr;
P2=Wd/A;
disp("Pressure while moving up ="+string(P1)+" N/cm^2");
disp("Pressure while moving down ="+string(P2)+" N/cm^2");
|
3d573848b694efe78087312132599cc4276a9f07 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1853/CH4/EX4.18/Ex4_18.sce | 8029975041bcc8ffd2b67600e477bca3560afc52 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 221 | sce | Ex4_18.sce |
//calculate the current
C=25e-6;
V=200
f=60 //frequency half
f2=120 //frequency doubled
Xc=1/(2*%pi*f*C)
Xc=1/(2*%pi*f2*C)
I=V/Xc
disp('frequency half='+string(f)+'hz' , 'frequency douled='+string(f2)+'hz')
|
40fa0ac037ad9b82192802e8022bf598f28b6334 | 82cdcedaf3c5229da7560895cc713520e3413f39 | /Dados/scilabPlotDados.sce | e5b5e86fdfcef53af85549d19726ae0765425cea | [] | no_license | mpsdantas/cpg | 9b1ae66eeefb7f4cab970eab271ada56a673865c | aabd8a621131218d0ae68d5433caf70110c7b9e7 | refs/heads/master | 2021-03-22T04:40:28.689371 | 2018-03-12T22:58:25 | 2018-03-12T22:58:25 | 76,735,862 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 339 | sce | scilabPlotDados.sce | tetha1 = csvRead("~/Documentos/Pesquisa/cpg/Dados/Osciladores.csv");
time = csvRead("~/Documentos/Pesquisa/cpg/Dados/time40.csv");
tetha2 = csvRead("~/Documentos/Pesquisa/cpg/Dados/Osciladores2.csv");
//tetha4 = csvRead("~/Documentos/Pesquisa/cpg/Dados/Arquivo5.csv");
//tetha5 = csvRead("~/Documentos/Pesquisa/cpg/Dados/Arquivo6.csv");
|
2ee7422d34b9916b23076045e72188712f9be786 | 2c78de0b151238b1c0c26e6a4d1a36c7fa09268c | /quality/test/garant6x/Ознакомительная_версия.TST | 2e8bca16723adc6d9d50e6041be5ed20d7d115d0 | [] | no_license | bravesoftdz/realwork | 05a3b308cef59bed8a9efda4212849c391b4b267 | 19b446ce8ad2adf82ab8ce7988bc003221accad2 | refs/heads/master | 2021-06-07T23:57:22.429896 | 2016-11-01T18:30:21 | 2016-11-01T18:30:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 40,388 | tst | Ознакомительная_версия.TST | {\rtf1\ansi\ansicpg1251\uc1\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1049\deflangfe1049{\fonttbl{\f0\froman\fcharset204\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times New Roman};}
{\f1\fswiss\fcharset204\fprq2{\*\panose 020b0604020202020204}Arial{\*\falt Times New Roman};}{\f2\fmodern\fcharset204\fprq1{\*\panose 02070309020205020404}Courier New;}{\f3\froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;}
{\f40\froman\fcharset0\fprq2 Times New Roman{\*\falt Times New Roman};}{\f38\froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times New Roman};}{\f41\froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times New Roman};}
{\f42\froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times New Roman};}{\f43\froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times New Roman};}{\f44\froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times New Roman};}
{\f45\froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times New Roman};}{\f46\froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times New Roman};}{\f50\fswiss\fcharset0\fprq2 Arial{\*\falt Times New Roman};}
{\f48\fswiss\fcharset238\fprq2 Arial CE{\*\falt Times New Roman};}{\f51\fswiss\fcharset161\fprq2 Arial Greek{\*\falt Times New Roman};}{\f52\fswiss\fcharset162\fprq2 Arial Tur{\*\falt Times New Roman};}
{\f53\fswiss\fcharset177\fprq2 Arial (Hebrew){\*\falt Times New Roman};}{\f54\fswiss\fcharset178\fprq2 Arial (Arabic){\*\falt Times New Roman};}{\f55\fswiss\fcharset186\fprq2 Arial Baltic{\*\falt Times New Roman};}
{\f56\fswiss\fcharset163\fprq2 Arial (Vietnamese){\*\falt Times New Roman};}{\f60\fmodern\fcharset0\fprq1 Courier New;}{\f58\fmodern\fcharset238\fprq1 Courier New CE;}{\f61\fmodern\fcharset161\fprq1 Courier New Greek;}
{\f62\fmodern\fcharset162\fprq1 Courier New Tur;}{\f63\fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f64\fmodern\fcharset178\fprq1 Courier New (Arabic);}{\f65\fmodern\fcharset186\fprq1 Courier New Baltic;}
{\f66\fmodern\fcharset163\fprq1 Courier New (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;
\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\stylesheet{
\ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 Normal;}{\s1\ql \li0\ri0\sa220\sl220\slmult0
\keep\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \b\f1\fs28\expnd-2\expndtw-10\lang1033\langfe1033\kerning20\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 1;}{\*\cs10 \additive \ssemihidden
Default Paragraph Font;}{\*\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv
\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}{\s15\ql \fi-720\li720\ri0\sb360\keepn\nowidctlpar
\jclisttab\tx720\faauto\ls1\outlinelevel0\adjustright\rin0\lin720\itap0 \b\f1\fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 1;}{\s16\ql \fi-720\li720\ri0\sb240\keepn\nowidctlpar
\jclisttab\tx720\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\f1\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon15 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 2;}{\s17\ql \fi-720\li720\ri0\sb120\keepn\nowidctlpar
\jclisttab\tx720\faauto\ls1\ilvl2\outlinelevel2\adjustright\rin0\lin720\itap0 \b\i\f1\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon15 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 3;}{\s18\ql \fi-720\li720\ri0\sb120\keepn\nowidctlpar
\jclisttab\tx1080\faauto\ls1\ilvl3\outlinelevel3\adjustright\rin0\lin720\itap0 \f1\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon15 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 4;}{
\s19\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 5;}{
\s20\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \i\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 6;}{
\s21\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 7;}{
\s22\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \i\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 8;}{
\s23\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\i\fs18\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 9;}{\*\cs24 \additive
\'ce\'f1\'ed\'ee\'e2\'ed\'ee\'e9 \'f8\'f0\'e8\'f4\'f2;}{\s25\qc \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 \sbasedon0 \snext25
\'cd\'e0\'e7\'e2\'e0\'ed\'e8\'e5 \'e1\'ee\'eb\'fc\'f8\'ee\'e5;}{\s26\ql \fi720\li425\ri0\sb60\keep\keepn\widctlpar
\tx851\tx1276\tx1701\tx2127\tx2552\tx2977\tx3402\tx3828\tx4253\tx4678\tx5103\tx5529\tx5954\tx6379\tx6804\tx7230\tx7655\tx8080\tx8505\hyphpar0\faauto\adjustright\rin0\lin425\itap0 \f2\fs16\lang1049\langfe1033\cgrid\langnp1049\langfenp1033
\sbasedon0 \snext26 SourceCode;}{\s27\ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \sautoupd \'ee\'e3\'eb\'e0\'e2\'eb\'e5\'ed\'e8\'e5 1;}{
\s28\ql \fi720\li200\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin200\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \sautoupd \'ee\'e3\'eb\'e0\'e2\'eb\'e5\'ed\'e8\'e5 2;}{\s29\ql \li0\ri0\widctlpar
\tqc\tx4844\tqr\tx9689\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext29 header;}{\s30\ql \li0\ri0\widctlpar
\tqc\tx4844\tqr\tx9689\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext30 footer;}{\s31\ql \li283\ri0\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin283\itap0
\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext31 Body Text 2;}{\s32\ql \li0\ri0\sb60\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033
\sbasedon0 \snext0 \sautoupd \ssemihidden toc 1;}{\s33\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033 \sbasedon0 \snext0 \sautoupd \ssemihidden toc 2;}{
\s34\qc \li0\ri0\sa120\widctlpar\noline\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs28\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 \sbasedon0 \snext0 \'cd\'e0\'e7\'e2\'e0\'ed\'e8\'e5 \'e4\'ee\'ea\'f3\'ec\'e5\'ed\'f2\'e0;}{
\s35\qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs22\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 \sbasedon0 \snext35 \ssemihidden annotation text;}}{\*\latentstyles\lsdstimax156\lsdlockeddef0}{\*\listtable
{\list\listtemplateid-1247003914{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fbias0 \s15\fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0
\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal\levelspace0\levelindent0{\leveltext\'03\'00.\'01;}{\levelnumbers\'01\'03;}\fbias0 \s16\fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levellegal\levelspace0\levelindent0{\leveltext\'05\'00.\'01.\'02;}{\levelnumbers\'01\'03\'05;}\fbias0 \s17\fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1
\levellegal\levelspace0\levelindent0{\leveltext\'07\'00.\'01.\'02.\'03;}{\levelnumbers\'01\'03\'05\'07;}\fbias0 \s18\fi-720\li720\jclisttab\tx1080\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal
\levelspace0\levelindent0{\leveltext\'09\'00.\'01.\'02.\'03.\'04;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 \fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal\levelspace0
\levelindent0{\leveltext\'0b\'00.\'01.\'02.\'03.\'04.\'05;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal\levelspace0
\levelindent0{\leveltext\'0d\'00.\'01.\'02.\'03.\'04.\'05.\'06;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal
\levelspace0\levelindent0{\leveltext\'0f\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levellegal\levelspace0\levelindent0{\leveltext\'11\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }{\listname ;}\listid452941481}}
{\*\listoverridetable{\listoverride\listid452941481\listoverridecount0\ls1}}{\*\rsidtbl \rsid1196431\rsid1340225\rsid1661404\rsid1712142\rsid1917736\rsid3623684\rsid4088528\rsid4997367\rsid6174564\rsid7080475\rsid8066550\rsid8266253\rsid9504203
\rsid11042123\rsid13972614\rsid14036400\rsid14306434\rsid14833434\rsid15234881\rsid15859932\rsid15932552\rsid15955894\rsid16523833}{\*\generator Microsoft Word 11.0.5604;}{\info
{\title \'d3\'f2\'e8\'eb\'e8\'f2\'e0 \'e8\'e7\'ec\'e5\'ed\'e5\'ed\'e8\'ff \'ef\'e0\'f0\'ee\'eb\'e5\'e9}{\subject \'c3\'ca \'ce\'c8\'d2}{\author \'ca\'ee\'e7\'eb\'ee\'e2}{\operator Santer}{\creatim\yr2005\mo2\dy28\hr15\min29}
{\revtim\yr2008\mo10\dy28\hr10\min52}{\printim\yr2001\mo8\dy2\hr19\min20}{\version48}{\edmins213}{\nofpages3}{\nofwords309}{\nofchars1765}{\*\company \'c3\'e0\'f0\'e0\'ed\'f2}{\nofcharsws2070}{\vern24689}}{\*\userprops {\propname Version}\proptype3
{\staticval 1}{\propname ReqProMenus}\proptype11{\staticval 0}}\paperw11907\paperh16840\margl1440\margr1440\margt1134\margb1134 \widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\formshade\horzdoc\dghspace120
\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale150\pgbrdrhead\pgbrdrfoot\nolnhtadjtbl\rsidroot15932552 \fet0{\*\ftnsep \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0
\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid8066550 \chftnsep
\par }}{\*\ftnsepc \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid8066550 \chftnsepc
\par }}{\*\aftnsep \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid8066550 \chftnsep
\par }}{\*\aftnsepc \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid8066550 \chftnsepc
\par }}\sectd \psz9\linex0\headery709\footery709\colsx709\vertalc\endnhere\sectdefaultcl\sftnbj {\header \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {
\fs24\insrsid8066550
\par }\pard \ql \fi720\li0\ri0\sb60\nowidctlpar\brdrt\brdrs\brdrw15\brsp20 \faauto\adjustright\rin0\lin0\rtlgutter\itap0 {\fs24\insrsid8066550
\par }\pard \qr \fi720\li0\ri0\sb60\nowidctlpar\brdrb\brdrs\brdrw15\brsp20 \faauto\adjustright\rin0\lin0\itap0 {\b\f1\fs36\lang1049\langfe1033\langnp1049\insrsid8066550 \'cd\'cf\'cf \'c3\'e0\'f0\'e0\'ed\'f2-\'d1\'e5\'f0\'e2\'e8\'f1
\par
\par }}{\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}
{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8
\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \s25\qr \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0
\b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 {\field{\*\fldinst {\insrsid8066550 SUBJECT \\* MERGEFORMAT }}{\fldrslt {\insrsid8066550 \'c3\'ca \'ce\'c8\'d2}}}{\insrsid8066550
\par \'ce\'e7\'ed\'e0\'ea\'ee\'ec\'e8\'f2\'e5\'eb\'fc\'ed\'e0\'ff \'e2\'e5\'f0\'f1\'e8\'ff
\par
\par \'c2\'e5\'f0\'f1\'e8\'ff{\*\bkmkstart OLE_LINK10} {\*\bkmkend OLE_LINK10}}{\field{\*\fldinst {\insrsid8066550 DOCPROPERTY "Version" \\* MERGEFORMAT }}{\fldrslt {\insrsid8066550 1}}}{\fs28\insrsid8066550
\par }\pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs28\lang1049\langfe1033\langnp1049\insrsid8066550
\par }{\lang1049\langfe1033\langnp1049\insrsid8066550
\par
\par \sect }\sectd \pgwsxn12240\pghsxn15840\psz1\linex0\headery709\footery709\colsx709\endnhere\sectdefaultcl\sftnbj {\header \trowd \irow0\irowband0\ts11\trgaph108\trleft0\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr
\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15
\cltxlrtb\clftsWidth3\clwWidth6379\clshdrawnil \cellx6379\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3179\clshdrawnil \cellx9558\pard\plain
\s29\ql \li0\ri0\nowidctlpar\intbl\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 }{\fs20\insrsid8066550 SUBJECT}{
\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \\* }{\fs20\insrsid8066550 MERGEFORMAT}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 }}{\fldrslt {\fs20\lang1049\langfe1033\langnp1049\insrsid4088528\charrsid4088528 \'c3\'ca \'ce\'c8\'d2}}}{
\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \cell }\pard \s29\ql \fi720\li0\ri0\nowidctlpar\intbl\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 {\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \'c2\'e5\'f0\'f1\'e8\'ff: }
{\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 }{\fs20\insrsid8066550 DOCPROPERTY}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 "}{\fs20\insrsid8066550 Version}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 " \\* }{
\fs20\insrsid8066550 MERGEFORMAT}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 }}{\fldrslt {\fs20\lang1049\langfe1033\langnp1049\insrsid4088528\charrsid4088528 1}}}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \cell }\pard\plain
\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs24\lang1049\langfe1033\langnp1049\insrsid8066550 \trowd \irow0\irowband0\ts11\trgaph108\trleft0\trbrdrt\brdrs\brdrw15
\trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15
\clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth6379\clshdrawnil \cellx6379\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3179\clshdrawnil \cellx9558\row
}\pard\plain \s29\ql \li0\ri0\nowidctlpar\intbl\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 }{\fs20\insrsid8066550
TITLE}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \\* }{\fs20\insrsid8066550 MERGEFORMAT}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 }}{\fldrslt {\fs20\lang1049\langfe1033\langnp1049\insrsid4088528\charrsid4088528 \'d3\'f2\'e8\'eb\'e8
\'f2\'e0 \'e8\'e7\'ec\'e5\'ed\'e5\'ed\'e8\'ff \'ef\'e0\'f0\'ee\'eb\'e5\'e9}}}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \cell }\pard \s29\ql \fi720\li0\ri0\nowidctlpar\intbl\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 {
\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \'c4\'e0\'f2\'e0: }{\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 SAVEDATE \\* MERGEFORMAT }}{\fldrslt {\fs20\lang1024\langfe1024\noproof\insrsid9504203\charrsid9504203
07.02.2008 10:34:00}}}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \cell }\pard\plain \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {
\fs24\lang1049\langfe1033\langnp1049\insrsid8066550 \trowd \irow1\irowband1\ts11\trgaph108\trleft0\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15
\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth6379\clshdrawnil \cellx6379\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl
\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3179\clshdrawnil \cellx9558\row }\trowd \irow2\irowband2\lastrow \ts11\trgaph108\trleft0\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15
\trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15
\cltxlrtb\clftsWidth3\clwWidth9558\clshdrawnil \cellx9558\pard\plain \s29\ql \li0\ri0\nowidctlpar\intbl\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {
\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \'c8\'ec\'ff \'f4\'e0\'e9\'eb\'e0: }{\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 }{\fs20\insrsid8066550 FILENAME}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \\* }{
\fs20\insrsid8066550 MERGEFORMAT}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 }}{\fldrslt {\fs20\lang1024\langfe1024\noproof\langnp1049\insrsid4088528\charrsid4088528 \'ce\'e7\'ed\'e0\'ea\'ee\'ec\'e8\'f2\'e5\'eb\'fc\'ed\'e0\'ff_\'e2\'e5\'f0\'f1
\'e8\'ff.TST}}}{\fs20\lang1049\langfe1033\langnp1049\insrsid8066550 \cell }\pard\plain \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {
\fs24\lang1049\langfe1033\langnp1049\insrsid8066550 \trowd \irow2\irowband2\lastrow \ts11\trgaph108\trleft0\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15
\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth9558\clshdrawnil \cellx9558\row }\pard\plain
\s29\ql \fi720\li0\ri0\nowidctlpar\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs4\lang1049\langfe1033\langnp1049\insrsid8066550
\par }}{\footer \trowd \irow0\irowband0\lastrow \ts11\trgaph108\trleft0\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15
\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx3162\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl
\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx6324\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15
\cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx9486\pard\plain \ql \li0\ri360\nowidctlpar\intbl\faauto\adjustright\rin360\lin0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid8066550 \'ca\'ee\'ed\'f4
\'e8\'e4\'e5\'ed\'f6\'e8\'e0\'eb\'fc\'ed\'ee\cell }\pard \qc \li0\ri0\nowidctlpar\intbl\faauto\adjustright\rin0\lin0 {\insrsid8066550 {\field{\*\fldinst SYMBOL 211 \\f "Symbol" \\s 10}{\fldrslt\f3\fs20}}}{\lang1049\langfe1033\langnp1049\insrsid8066550
\'cd\'cf\'cf \'c3\'e0\'f0\'e0\'ed\'f2-\'d1\'e5\'f0\'e2\'e8\'f1, 2001\cell }\pard \qr \li0\ri0\nowidctlpar\intbl\faauto\adjustright\rin0\lin0 {\lang1049\langfe1033\langnp1049\insrsid8066550 \'d1\'f2\'f0\'e0\'ed\'e8\'f6\'e0}{\insrsid8066550 }
{\field{\*\fldinst {\insrsid8066550 PAGE }}{\fldrslt {\lang1024\langfe1024\noproof\insrsid9504203 3}}}{\insrsid8066550 of }{\field{\*\fldinst {\insrsid8066550 NUMPAGES \\* MERGEFORMAT }}{\fldrslt {\lang1024\langfe1024\noproof\insrsid9504203 3}}}{
\insrsid8066550 \cell }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\fs24\insrsid8066550 \trowd \irow0\irowband0\lastrow \ts11\trgaph108\trleft0\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15
\trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15
\cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx3162\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx6324\clvertalt\clbrdrt\brdrs\brdrw15
\clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx9486\row }\pard \ql \fi720\li0\ri0\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 {\fs4\insrsid8066550
\par }}\pard\plain \s25\qc \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 {\insrsid8066550 \'ce\'e3\'eb\'e0\'e2\'eb\'e5\'ed\'e8\'e5
\par }\pard\plain \s32\ql \li0\ri0\sb60\widctlpar\tx480\tqr\tldot\tx9350\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033 {\field\fldedit{\*\fldinst {\insrsid8066550 TOC \\o "1-3" }}{\fldrslt {
\insrsid8066550 1.}{\fs24\insrsid8066550 \tab }{\insrsid8066550 \'c2\'e2\'e5\'e4\'e5\'ed\'e8\'e5\tab }{\field{\*\fldinst {\insrsid8066550 PAGEREF _Toc86485238 \\h }{\insrsid1340225 {\*\datafield
08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f006300380036003400380035003200330038000000000000000000}}}{\fldrslt {\insrsid4088528 3}}}{\fs24\insrsid8066550
\par }\pard\plain \s33\ql \li0\ri0\widctlpar\tx720\tqr\tldot\tx9350\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033 {\insrsid8066550 1.1}{\fs24\insrsid8066550 \tab }{\insrsid8066550 \'d6\'e5
\'eb\'fc\tab }{\field{\*\fldinst {\insrsid8066550 PAGEREF _Toc86485239 \\h }{\insrsid1340225 {\*\datafield 08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f006300380036003400380035003200330039000000000000000000}}}{\fldrslt {
\insrsid4088528 3}}}{\fs24\insrsid8066550
\par }{\insrsid8066550 1.2}{\fs24\insrsid8066550 \tab }{\insrsid8066550 \'d0\'e0\'ec\'ea\'e8 \'e4\'ee\'ea\'f3\'ec\'e5\'ed\'f2\'e0\tab }{\field{\*\fldinst {\insrsid8066550 PAGEREF _Toc86485240 \\h }}{\fldrslt {\b\lang1024\langfe1024\langnp1033\insrsid4088528
Error}{\b\insrsid4088528\charrsid1712142 ! }{\b\lang1024\langfe1024\langnp1033\insrsid4088528 Bookmark}{\b\insrsid4088528\charrsid1712142 }{\b\lang1024\langfe1024\langnp1033\insrsid4088528 not}{\b\insrsid4088528\charrsid1712142 }{
\b\lang1024\langfe1024\langnp1033\insrsid4088528 defined}{\b\insrsid4088528\charrsid1712142 .}}}{\fs24\insrsid8066550
\par }{\insrsid8066550 1.3}{\fs24\insrsid8066550 \tab }{\insrsid8066550 \'ce\'f2\'e2\'e5\'f2\'f1\'f2\'e2\'e5\'ed\'ed\'ee\'f1\'f2\'fc\tab }{\field{\*\fldinst {\insrsid8066550 PAGEREF _Toc86485241 \\h }{\insrsid1340225 {\*\datafield
08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f006300380036003400380035003200340031000000000000000000}}}{\fldrslt {\insrsid4088528 3}}}{\fs24\insrsid8066550
\par }{\insrsid8066550 1.4}{\fs24\insrsid8066550 \tab }{\insrsid8066550 \'ce\'ef\'f0\'e5\'e4\'e5\'eb\'e5\'ed\'e8\'ff, \'f1\'ee\'ea\'f0\'e0\'f9\'e5\'ed\'e8\'ff \'e8 \'e0\'e1\'e1\'f0\'e5\'e2\'e8\'e0\'f2\'f3\'f0\'fb\tab }{\field{\*\fldinst {\insrsid8066550
PAGEREF _Toc86485242 \\h }}{\fldrslt {\b\lang1024\langfe1024\langnp1033\insrsid4088528 Error}{\b\insrsid4088528\charrsid1712142 ! }{\b\lang1024\langfe1024\langnp1033\insrsid4088528 Bookmark}{\b\insrsid4088528\charrsid1712142 }{
\b\lang1024\langfe1024\langnp1033\insrsid4088528 not}{\b\insrsid4088528\charrsid1712142 }{\b\lang1024\langfe1024\langnp1033\insrsid4088528 defined}{\b\insrsid4088528\charrsid1712142 .}}}{\fs24\insrsid8066550
\par }{\insrsid8066550 1.5}{\fs24\insrsid8066550 \tab }{\insrsid8066550 \'d1\'f1\'fb\'eb\'ea\'e8\tab }{\field{\*\fldinst {\insrsid8066550 PAGEREF _Toc86485243 \\h }}{\fldrslt {\b\lang1024\langfe1024\langnp1033\insrsid4088528 Error! Bookmark not defined.}}}{
\fs24\insrsid8066550
\par }\pard\plain \s32\ql \li0\ri0\sb60\widctlpar\tx480\tqr\tldot\tx9350\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033 {\insrsid8066550 2.}{\fs24\insrsid8066550 \tab }{\insrsid8066550 \'d1
\'ee\'e4\'e5\'f0\'e6\'e0\'f2\'e5\'eb\'fc\'ed\'e0\'ff \'f7\'e0\'f1\'f2\'fc\tab }{\field{\*\fldinst {\insrsid8066550 PAGEREF _Toc86485244 \\h }}{\fldrslt {\b\lang1024\langfe1024\langnp1033\insrsid4088528 Error! Bookmark not defined.}}}{
\fs24\insrsid8066550
\par }\pard\plain \s25\qc \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 }}\pard\plain \s25\qc \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0
\b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 {\insrsid8066550 \page }{\insrsid16523833 \'ce\'e7\'ed\'e0\'ea\'ee\'ec\'e8\'f2\'e5\'eb\'fc\'ed\'e0\'ff \'e2\'e5\'f0\'f1\'e8\'ff}{\insrsid8066550
\par {\*\bkmkstart _Toc502639461}{\*\bkmkstart _Toc86485238}{\listtext\pard\plain\s15 \b\f1\fs28\lang1049\langfe1033\langfenp1033\insrsid8066550 \hich\af1\dbch\af0\loch\f1 1.\tab}}\pard\plain \s15\ql \fi-720\li720\ri0\sb360\keepn\nowidctlpar
\jclisttab\tx720\faauto\ls1\outlinelevel0\adjustright\rin0\lin720\itap0 \b\f1\fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid8066550 \'c2\'e2\'e5\'e4\'e5\'ed\'e8\'e5{\*\bkmkstart _Toc502639462}
{\*\bkmkend _Toc502639461}{\*\bkmkend _Toc86485238}
\par {\*\bkmkstart _Toc86485239}{\listtext\pard\plain\s16 \b\f1\lang1049\langfe1033\langfenp1033\insrsid8066550 \hich\af1\dbch\af0\loch\f1 1.1\tab}}\pard\plain \s16\ql \fi-720\li720\ri0\sb240\keepn\nowidctlpar
\jclisttab\tx720\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\f1\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid8066550 \'d6\'e5\'eb\'fc{\*\bkmkend _Toc502639462}{\*\bkmkend _Toc86485239}
\par }\pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid8066550 \'ce\'ef\'e8\'f1\'e0\'ed\'e8\'e5 \'f2\'e5\'f1\'f2\'ee\'e2 \'e4\'eb
\'ff \'ee\'e7\'ed\'e0\'ea\'ee\'ec\'e8\'f2\'e5\'eb\'fc\'ed\'ee\'e9 \'e2\'e5\'f0\'f1\'e8\'e8
\par {\*\bkmkstart _Toc86485241}{\listtext\pard\plain\s16 \b\f1\lang1049\langfe1033\langfenp1033\insrsid8066550 \hich\af1\dbch\af0\loch\f1 1.2\tab}}\pard\plain \s16\ql \fi-720\li720\ri0\sb240\keepn\nowidctlpar
\jclisttab\tx720\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\f1\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid8066550 \'ce\'f2\'e2\'e5\'f2\'f1\'f2\'e2\'e5\'ed\'ed\'ee\'f1\'f2\'fc
{\*\bkmkend _Toc86485241}
\par }\pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid8066550 \'c4\'ee\'ea\'f3\'ec\'e5\'ed\'f2 \'ee\'e1\'ff\'e7\'e0\'f2\'e5\'eb
\'e5\'ed \'ea \'ef\'f0\'e8\'ec\'e5\'ed\'e5\'ed\'e8\'fe \'f1\'ee\'f2\'f0\'f3\'e4\'ed\'e8\'ea\'e0\'ec\'e8 \'c3\'ca \'ce\'c8\'d2 \'e2 \'ef\'f0\'ee\'e5\'ea\'f2\'e5 \'c3\'e0\'f0\'e0\'ed\'f2 6.
\par {\*\bkmkstart REQ192BNU}{\listtext\pard\plain\s15 \b\v\f1\fs28\cf11\lang1049\langfe1033\langfenp1033\insrsid4088528\charrsid4088528 \hich\af1\dbch\af0\loch\f1 2.\tab}}\pard\plain \s15\ql \fi-720\li720\ri0\sb360\keepn\nowidctlpar
\jclisttab\tx720\faauto\ls1\outlinelevel0\adjustright\rin0\lin720\itap0 \b\f1\fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid4088528\charrsid4088528 HLTC363 }{
\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid16523833 \'ce\'e7\'ed\'e0\'ea\'ee\'ec\'e8\'f2\'e5\'eb\'fc\'ed\'e0\'ff \'e2\'e5\'f0\'f1\'e8\'ff}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14833434\charrsid14833434
\par }\pard \s15\ql \li720\ri0\sb360\keepn\nowidctlpar\faauto\outlinelevel0\adjustright\rin0\lin720\itap0\pararsid14833434 {\lang1049\langfe1033\langnp1049\insrsid14833434 \'cf\'f0\'e8 \'ef\'f0\'ee\'e2\'e5\'f0\'ea\'e5 \'ee\'e1\'ff\'e7\'e0\'f2\'e5\'eb\'fc\'ed
\'ee \'e8\'f1\'ef\'ee\'eb\'fc\'e7\'ee\'e2\'e0\'ed\'e8\'e5 \'f3\'f2\'e8\'eb\'e8\'f2\'fb \'ef\'f0\'ee\'e2\'e5\'f0\'ea\'e8 \'eb\'ee\'e3\'ee\'e2 \'ed\'e0 \'ee\'f8\'e8\'e1\'ea\'e8 - \\\\p3single05\\works\\SCRIPTS\\LogAnalyse\\startLogAnalyser.bat}{
\lang1049\langfe1033\langnp1049\insrsid4088528\charrsid4088528 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid8066550\charrsid4088528 {\*\bkmkend REQ192BNU}
\par }\pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid8066550
\par }\pard \ql \li720\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin720\itap0 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid7080475\charrsid7080475 {\*\bkmkstart REQ192BRU}HLTC363.1 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid16523833 \'d1\'f0
\'ee\'ea \'f0\'e0\'e1\'ee\'f2\'fb \'ee\'e7\'ed\'e0\'ea\'ee\'ec\'e8\'f2\'e5\'eb\'fc\'ed\'ee\'e9 \'e2\'e5\'f0\'f1\'e8\'e8 \'e4\'ee\'eb\'e6\'e5\'ed \'e1\'fb\'f2\'fc \'f0\'e0\'e2\'e5\'ed }{
\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1712142\charrsid1712142 14-}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1712142 \'f2\'e8 \'ea\'e0\'eb\'e5\'ed\'e4\'e0\'f0\'ed\'fb\'ec \'e4\'ed\'ff\'ec(\'ec\'ee\'e6\'e5\'f2 \'e1\'fb\'f2\'fc \'f0\'e0
\'f1\'f8\'e8\'f0\'e5\'ed \'e4\'ee 30-\'f2\'e8 \'e4\'ed\'e5\'e9)}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid16523833 \'f1 \'ec\'ee\'ec\'e5\'ed\'f2\'e0 \'f3\'f1\'f2\'e0\'ed\'ee\'e2\'ea\'e8 \'ed\'e0 \'ea\'ee\'ec\'ef\'fc\'fe\'f2\'e5\'f0 \'ef\'ee\'eb
\'fc\'e7\'ee\'e2\'e0\'f2\'e5\'eb\'ff.}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid7080475 \'cf\'ee \'e8\'f1\'f2\'e5\'f7\'e5\'ed\'e8\'e8 \'fd\'f2\'ee\'e3\'ee \'e2\'f0\'e5\'ec\'e5\'ed\'e8 \'e7\'e0\'ef\'f3\'f1\'ea \'e8 \'f0\'e0\'e1\'ee\'f2\'e0 \'f1
\'ee\'e1\'ee\'eb\'ee\'f7\'ea\'ee\'e9 \'e4\'ee\'eb\'e6\'ed\'fb \'e1\'fb\'f2\'fc \'ed\'e5\'e2\'ee\'e7\'ec\'ee\'e6\'ed\'fb.}{\lang1049\langfe1033\langnp1049\insrsid4088528\charrsid4088528 \~}{\lang1049\langfe1033\langnp1049\insrsid8066550
{\*\bkmkend REQ192BRU}
\par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 {\*\bkmkstart REQ1944IU}HLTC363.2 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid15234881\charrsid15234881 \'cf\'f0\'e8 \'e7\'e0\'ef\'f3\'f1\'ea\'e5 \'e2\'f1\'e5\'e3\'e4
\'e0 \'ef\'ee\'ea\'e0\'e7\'fb\'e2\'e0\'e5\'f2\'f1\'ff \'f1\'ef\'e5\'f6\'e8\'e0\'eb\'fc\'ed\'e0\'ff \'f1\'f2\'e0\'f0\'f2\'ee\'e2\'e0\'ff \'e7\'e0\'f1\'f2\'e0\'e2\'ea\'e0, \'f1\'ee\'ee\'e1\'f9\'e0\'fe\'f9\'e0\'ff \'ef\'ee\'eb\'fc\'e7\'ee\'e2\'e0\'f2\'e5\'eb
\'fe, \'f7\'f2\'ee \'ee\'ed \'f0\'e0\'e1\'ee\'f2\'e0\'e5\'f2 \'f1 \'ee\'e7\'ed\'e0\'ea\'ee\'ec\'e8\'f2\'e5\'eb\'fc\'ed\'ee\'e9 \'e2\'e5\'f0\'f1\'e8\'e5\'e9}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid9504203 (}{
\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid9504203\charrsid9504203 \'e5\'f1\'eb\'e8 \'ef\'f0\'e8\'ee\'f0\'e8\'f2\'e5\'f2 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid9504203 \'e7\'e0\'f1\'f2\'e0\'e2\'ea\'e8 \'f1\'e0\'ec\'fb\'e9 \'e2\'fb\'f1
\'ee\'ea\'e8\'e9)}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid15234881\charrsid15234881 .}{\lang1049\langfe1033\langnp1049\insrsid15234881\charrsid15234881 \~}{\lang1049\langfe1033\langnp1049\insrsid15234881 {\*\bkmkend REQ1944IU}
\par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 {\*\bkmkstart REQ1945QU}HLTC363.3 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid15234881\charrsid15234881 \'c7\'e0\'ef\'f0\'e5\'f9\'e5\'ed\'ee \'ee\'e1\'ed\'ee\'e2\'eb\'e5
\'ed\'e8\'e5 \'e8\'ed\'f4\'ee\'f0\'ec\'e0\'f6\'e8\'ee\'ed\'ed\'ee\'e3\'ee \'e1\'e0\'ed\'ea\'e0}{\lang1049\langfe1033\langnp1049\insrsid15234881\charrsid15234881 \~}{\lang1049\langfe1033\langnp1049\insrsid15234881 {\*\bkmkend REQ1945QU}
\par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 {\*\bkmkstart REQ194LWU}HLTC363.4 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736 \'ce\'f2\'ea\'eb\'fe\'f7\'e5\'ed\'fb \'e2\'f1\'e5 \'f4\'f3\'ed\'ea
\'f6\'e8\'e8 \'ee\'e1\'f9\'e5\'ed\'e8\'ff \'f1 \'e2\'ed\'e5\'f8\'ed\'e8\'ec \'ec\'e8\'f0\'ee\'ec:}{\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid15234881\charrsid1917736
{\*\bkmkend REQ194LWU}
\par }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736 \tab }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 {\*\bkmkstart REQ194M7U}HLTC363.4.1 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736
\'d1\'ee\'f5\'f0\'e0\'ed\'e5\'ed\'e8\'e5 \'e2 \'f4\'e0\'e9\'eb}{\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736 {\*\bkmkend REQ194M7U}
\par }\pard \ql \fi720\li720\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin720\itap0\pararsid1917736 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 {\*\bkmkstart REQ194MEU}HLTC363.4.2 }{
\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736 \'dd\'ea\'f1\'ef\'ee\'f0\'f2}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid14036400 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736
\'e2}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid14036400 }{\uldb\cf11\insrsid1917736\charrsid1917736 Word}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11042123\charrsid11042123 (}{
\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11042123 \'e2 \'f2\'ee\'ec \'f7\'e8\'f1\'eb\'e5 \'e8\'e7 \'ee\'e3\'eb\'e0\'e2\'eb\'e5\'ed\'e8\'ff}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11042123\charrsid11042123 )}{
\insrsid1917736\charrsid1917736 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid14036400 {\*\bkmkend REQ194MEU}
\par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 {\*\bkmkstart REQ194MIU}HLTC363.4.3 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736 \'cf\'e5\'f7\'e0\'f2\'fc}{
\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11042123\charrsid11042123 (}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11042123 \'e2 \'f2\'ee\'ec \'f7\'e8\'f1\'eb\'e5 \'e8\'e7 \'ee\'e3\'eb\'e0\'e2\'eb\'e5\'ed\'e8\'ff}{
\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11042123\charrsid11042123 )}{\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736 \~}{\lang1049\langfe1033\langnp1049\insrsid1917736 {\*\bkmkend REQ194MIU}
\par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 {\*\bkmkstart REQ194N4U}HLTC363.4.4 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid14036400 \'ca\'ee\'ef\'e8\'f0\'ee\'e2\'e0\'ed\'e8\'e5 \'e2 \'e1\'f3\'f4
\'e5\'f0}{\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid14036400 {\*\bkmkend REQ194N4U}
\par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 {\*\bkmkstart REQ194NBU}HLTC363.4.5 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid14036400 \'ce\'f2\'ea\'f0\'fb\'f2\'e8\'e5 \'f8\'e0\'e1\'eb\'ee\'ed\'ee
\'e2 \'e2 \'f4\'ee\'f0\'ec\'e0\'f2\'e5 }{\uldb\cf11\insrsid1917736\charrsid14036400 Word}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid14036400 \'e8 }{\uldb\cf11\insrsid1917736\charrsid14036400 Excel}{
\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid14036400 (\'e7\'e0 \'e8\'f1\'ea\'eb\'fe\'f7\'e5\'ed\'e8\'e5\'ec 3839973, 3839974, 3839975, 3839976, 3839977, 3839978, 3839979, 3839980, 3839981, 3839982, 3839983, 3839984).}{
\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 \~}{\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1661404 {\*\bkmkend REQ194NBU}
\par }{\v\uldb\cf11\insrsid1661404\charrsid1661404 {\*\bkmkstart REQW9K221}HLTC}{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1661404\charrsid1661404 363.4.6 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1661404\charrsid1661404 \'cf\'e5\'f0\'e5\'f1
\'fb\'eb\'ea\'e0 \'e4\'ee\'ea\'f3\'ec\'e5\'ed\'f2\'ee\'e2 \'e8 \'f1\'ef\'e8\'f1\'ea\'ee\'e2 \'ef\'ee }{\uldb\cf11\insrsid1661404\charrsid1661404 e}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1661404\charrsid1661404 -}{
\uldb\cf11\insrsid1661404\charrsid1661404 mail}{\uldb\insrsid1661404\charrsid1661404 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1661404\charrsid1661404 {\*\bkmkend REQW9K221}
\par }\pard \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0\pararsid4997367 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 {\*\bkmkstart REQ194NVU}HLTC363.5 }{
\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid14036400 \'c2 \'e3\'eb\'e0\'e2\'ed\'ee\'ec \'ee\'ea\'ed\'e5 \'f1\'e8\'f1\'f2\'e5\'ec\'fb \'ef\'ee\'ff\'e2\'eb\'ff\'e5\'f2\'f1\'ff \'ef\'f0\'e5\'e4\'f3\'ef\'f0\'e5\'e6\'e4\'e5\'ed\'e8\'e5(
\'e7\'ed\'e0\'f7\'ee\'ea), \'ef\'f0\'e8 \'ea\'eb\'e8\'ea\'e5 \'ed\'e0 \'ea\'ee\'f2\'ee\'f0\'fb\'e9 \'ef\'ee\'eb\'fc\'e7\'ee\'e2\'e0\'f2\'e5\'eb\'fe \'e2\'fb\'e4\'e0\'e5\'f2\'f1\'ff \'e8\'ed\'f4\'ee\'f0\'ec\'e0\'f6\'e8\'ee\'ed\'ed\'ee\'e5 \'ee\'ea\'ed\'ee
\'f1 \'f1\'ee\'ee\'e1\'f9\'e5\'ed\'e8\'e5\'ec \'ee \'f2\'ee\'ec, \'f7\'f2\'ee \'ee\'ed \'f0\'e0\'e1\'ee\'f2\'e0\'e5\'f2 \'f1 \'ee\'e7\'ed\'e0\'ea\'ee\'ec\'e8\'f2\'e5\'eb\'fc\'ed\'e9\'ee \'e2\'e5\'f0\'f1\'e8\'e5\'e9}{
\lang1049\langfe1033\langnp1049\insrsid14036400\charrsid14036400 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid1917736\charrsid1917736 {\*\bkmkend REQ194NVU}
\par }} |
4f566957d3419d5b4d3bef8839f9d4a3a0f56365 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH3/EX3.30/example_3_30.sce | e765749fda93b4263882e6fd0cbf4936797ad4b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 346 | sce | example_3_30.sce | clear;
clc;
disp("--------------Example 3.30---------------")
dBpkm= -0.3 ; // dB/km
p1=2; // 2 mW - initial power
distance = 5; // 5km
dB= dBpkm*distance; // loss in the cable in decibel
ratio=10^(dB/10); // dB=10*log10(ratio)
p2 = p1*ratio; // ratio = p2/p1
printf("The power of the signal at 5 km is %2.1f mW.",p2);// display result
|
2c4e9cefe4ff5ec07d397b2a94118c09099329f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH2/EX2.13/13.sce | c7ff2210ceea85482db910c2268dbf656c5bbbee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 579 | sce | 13.sce | clc
// Given that
lambda = 5890 // Wavelength of light in angstrom
d1 = 5 // separation between slit and biprism in cm
d2 = 75 // Distance between screen and biprism in cm
Beta = 9.424e-2 // Fringe width in cm
// Sample Problem 13 on page no. 99
printf("\n # PROBLEM 13 # \n")
printf("\n Standard formula used \n x = D*n*lambda/d \n")
D = d1+ d2 // Separation between slit and screen in cm
d = D*1e-2*lambda*1e-10/(Beta*1e-2) // Calculation for separation between two coherent sources in m
printf("\n Separation between two coherent sources is %f cm.", d*1e2)
|
b476c2ff674dd217a310d001b44a639e545148ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH31/EX31.4/31_4.sce | 8a428c9062347fccbea92700a64d8c15f9a8592f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 543 | sce | 31_4.sce | clear//
//Variables
L1 = 1000.0 * 10**-6 //Inductance1 (in Henry)
L2 = 100.0 * 10**-6 //Inductance2 (in Henry)
M = 20.0 * 10**-6 //Mutual Inductance (in Henry)
C = 20.0 * 10**-12 //Capacitance (in Farad)
//Calculation
L = L1 + L2 + 2 * M //Net inductance (in Henry)
fo = 1/(2*%pi*(L * C)**0.5) //Frequency of oscillations (in Hertz)
//Result
printf("\n Frequency of oscillations is %0.3f ",fo*10**-6)
|
831a87a476344ead0ba6508c7569f9acd17005ca | bf24e30d6ed9b0d16fe0d59f6caf6ee61aa714cd | /missionU/MissionU1.sce | 4d05d287fdd63259605d70a271bf9e4ad008fb4a | [
"MIT"
] | permissive | pierre-geeraert/Projet_exolife | c8d3b623f2cbcaaaf5c510c8f438da2c82980be8 | cff5ca5cb1602d1b1ef589b847536b9e61e631ee | refs/heads/master | 2021-05-03T06:30:23.099197 | 2018-02-15T14:50:01 | 2018-02-15T14:50:01 | 120,595,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sce | MissionU1.sce | x = 1;
y = 1;
SobelX = [-1,-2,-1;0,0,0;1,2,1];
SobelY = [-1,0,1;-2,0,2;-1,0,1];
img = readpbm('U1_surface.pbm');
[lon,lar] = size(img);
D = conv2(img,SobelX)
F = conv2(img,SobelY)
for x = 1:(lon-3)
for y = 1:(lar-3)
img(x,y)=sqrt(D(x,y)^2 + F(x,y)^2);
end
end
|
6be3d57df28b680dfd02d436b6ef667955f2544e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH16/EX16.9w/16_9w.sce | 86d47587b89fcdd592e3cc5ab62d5de3d75440aa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 433 | sce | 16_9w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 16.9w
//calculation of the factor by which the pressure amplituide increases
//given data
n=30//increase(in dB) of the sound level
//calculation
//m = I2/I1 = intensity ratio
m=10^(n/10)
//since p2/p1 = sqrt(I2/I1)
f=sqrt(m)//require factor
printf('the factor by which the pressure amplituide increases is %d',round(f))
|
80d8d41122e37e59dd62811cdc4214abc30eea9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH1/EX1.12/12.sce | b5a78194f7d1f76ed349d12c3c22ebf347a6d3ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 302 | sce | 12.sce | clc
clear
//Input data
M=0.85 //Mach number
P=80 //Pressure in kPa
k=1.4 //Adiabatic Constant
//Calculation
Po=P*(1+(((k-1)/2)*M^2))^(k/(k-1)) //Pressure acting on the surface of the body in kPa
//Output
printf('The highest pressure acting on the surface of the body is %3.1f kPa',Po)
|
61cca4daf6084f51aba407ed87f3459e33f97029 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3456/CH19/EX19.2/Ex19_2.sce | aff72f3ce68fbdc3b2eef3ce58e307ea1f494f3d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 566 | sce | Ex19_2.sce | //Example 19.2
//Analysis of Wiredrawing
//Page No. 645
clc;clear;close;
alpha=12; //in degrees
r=0.2; //in %
mu=0.09; //no unit
n=0.3; //no unit
K=1300; //in MPa
v=3; //in m/s
B=mu*cotd(alpha/2);
e1=log(1/(1-r));
sigma_xa=K*e1^0.3/(n+1);
r1=1-((1-(B/(B+1)))^(1/B));
e=log(1/(1-r1));
sigma0=1300*e^0.3;
r2=1-(1-((sigma0/sigma_xa)*(B/(B+1)))^(1/B));
printf('\nBy First Approximation, r = %g\nBy Second Approximation, r = %g',r1,r2);
|
0ec9b5b61458f5a00ac48005d7dbabe2051e4f60 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1835/CH1/EX1.1/Ex1_1.sce | 3d966f78a5487cb6d4a2f625704fb732c20ab09d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 762 | sce | Ex1_1.sce | //CHAPTER 1 ILLUSRTATION 1 PAGE NO 15
//TITLE:Basic kinematics
//Figure 1.14
clc
clear
pi=3.141
AO=200// distance between fixed centres in mm
OB1=100// length of driving crank in mm
AP=400// length of slotter bar in mm
//====================================
OAB1=asind(OB1/AO)// inclination of slotted bar with vertical in degrees
beeta=(90-OAB1)*2// angle through which crank turns inreturn stroke in degrees
A=(360-beeta)/beeta// ratio of time of cutting stroke to the time of return stroke
L=2*AP*sind(90-(beeta)/2)// length of the stroke in mm
printf('Inclination of slotted bar with vertical= %.3f degrees\n Length of the stroke= %.3f mm',OAB1,L)
|
11552aec3cf74eb2df1b5bbff72421146b65e539 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH18/EX18.30/Ex18_30.sce | fc56fa0ce2b58a7bce55583d4e6dc08800df4323 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 290 | sce | Ex18_30.sce | //Initilization of variables
mb=0.06 //kg
ms=50 //kg
h=0.03 //m
g=9.8 //m/s^2
//Calculations
//Speed of bag+bullet
v2=sqrt(2*g*h) //m/s
//Applying conservation of momentum
v1=((mb+ms)*v2)/mb //m/s
//Result
clc
printf('The speed of bullet as it entered the bag was %f m/s',v1)
|
4a62b26faa23c639be083d590453b77cb3d0d656 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH9/EX9.6/6.sce | 6233cc74e7fe0c7f20398056bb22f71d51cb3c82 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 586 | sce | 6.sce | clc
clear
//INPUT DATA
E=5.5*1.6*10^-19//energy level in J
Ef=5*1.6*10^-19//fermi energy level in J
x=0.5*1.6*10^-19//Difference between energy and fermi energy in J
f=0.01//fermi function at which there is 1% probability that an electron in a solid
KB=1.38*10^-23//Boltzmann's Constant in m^2 Kg s^-2 k^-1
//CALCULATION
T=(x/(KB*(log(1-f)-log(f))))/10^3//The temperature at which there is 1% probability that an electron in a solid in K*10^3
//output
printf('The temperature at which there is one percentage probability that an electron in a solid is %3.4f*10^3 K',T)
|
cad54f0e654447b61cb1876499ed6718923c7fae | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH3/EX3.14/example3_14.sce | 13870de77e7f2bc604302226f402d9fa534b5afc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 741 | sce | example3_14.sce | clc
// Given that
lambda = 5.89e-7 // wavelength of light in meter
mu_e1 = 1.5 // refractive index for extraordinary light in first case
mu_o1 = 1.55 // refractive index for ordinary light in first case
mu_e2 = 1.57 // refractive index for extraordinary light in second case
mu_o2 = 1.55 // refractive index for ordinary light in second case
// Sample Problem 14 on page no. 3.28
printf("\n # PROBLEM 14 # \n")
t1 = lambda / (4 * (mu_o1 - mu_e1))
t2 = lambda / (4 * (mu_e2 - mu_o2))
// calculation for thickness of plate of quartz
printf("\n Standard formula used \n t = lambda / (4 * (mu_o - mu_e)) ")
printf("\n Thickness of plate of quartz in first case = %e meter,\n And thickness of plate of quartz in second case = %e meter",t1,t2)
|
f2e7a1bb10b21c81472ea762bb741a361f1cfa26 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1775/CH5/EX5.2/Chapter5_Example2.sce | 6412643fedc12437a612376d6714d5a3f0151477 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 819 | sce | Chapter5_Example2.sce | //Chapter-5, Illustration 2, Page 251
//Title: Air Compressors
//=============================================================================
clc
clear
//INPUT DATA
IP=37;//Indicated power in kW
P1=0.98;//Pressure at entry in bar
T1=288;//Temperature at entry in K
P2=5.8;//Pressure at exit in bar
n=1.2;//Adiabatic gas constant
N=100;//Speed in rpm
Ps=151.5;//Piston speed in m/min
a=2;//For double acting compressor
//CALCULATIONS
L=Ps/(2*N);//Stroke length in m
x=(n-1)/n;//Ratio
r=(3.147*L)/4;//Ratio of volume to bore
D=sqrt((IP*1000*60*x)/(N*a*r*P1*(10^5)*(((P2/P1)^x)-1)));//Cylinder diameter in m
//OUTPUT
mprintf('Stroke length of cylinder is %3.4f m \n Cylinder diameter is %3.4f m',L,D)
//==============================END OF PROGRAM=================================
|
0b938e49279988afa7cc11356efeb06a2686486e | 953cef8e16ff989ca373ddfc0f3f91d56fa4a5ef | /reamostragem.sce | 0dc2c2a282e6dc5c6c721d8ea77ef4049e1c0dc3 | [] | no_license | anarutesc/STD_P2 | ceda2571ae8713ffc701447881fe9f3cb55c6416 | 100ec1213a9dbc71c64cb638db3d1432eb5fb0e4 | refs/heads/master | 2020-04-10T11:18:30.524541 | 2018-12-20T00:12:53 | 2018-12-20T00:12:53 | 160,989,402 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | sce | reamostragem.sce | function x_reamostrado=reamostragem(x,qtd_amostras)
x_reamostrado(1)=x(1);
for k=2:length(x)
if(x(k-1)==x(k))
for i=0:qtd_amostras
x_reamostrado=[x_reamostrado x(k)]
end
end
if(x(k-1)~=x(k))
x_reamostrado= [x_reamostrado x(k-1)+(x(k)-x(k-1))/(qtd_amostras+1):(x(k)-x(k-1))/(qtd_amostras+1):x(k)];
end
end
endfunction
|
7d8951f46f906b057c12e0046ee89e46591ca9c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3504/CH2/EX2.16/Ex2_16.sce | e8a227ef6e77fda60bbfdabe1dca7999a52d1a84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 228 | sce | Ex2_16.sce | //To determine V_23 of the given network.
clc;
I=(3+%i*4)/(3+%i*4+2+%i*2)
V_23=I*(%i*4+2)
//The circuit cannot be solved by mesh analysis as the current source is present.Thus the obtained value is not assumed to be inaccurate.
|
f3bb5194789b9400bff6f106aaa3bcce5cd8c51e | 27be2dd7284eb8d71ea19e6b077993d7ff6afd16 | /LyraTalked.sce | 0846a64a311044a9721e4ef958a8b39d672344e0 | [] | no_license | mtxslv/numericalcomputation | 3b0ec7d1183c03c91c145de0fb1db9fff0a75e61 | 15ce639e5e370fb21fb1ce9878004270ee814e73 | refs/heads/master | 2020-03-26T06:10:14.116677 | 2019-11-14T11:41:38 | 2019-11-14T11:41:38 | 144,592,787 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 63 | sce | LyraTalked.sce | for i = 1:1:10
disp('Lyra talked with her daemon');
end
|
403749be9b3e81e837bdc0a8e3ed6973ad5b5e88 | 449d555969bfd7befe906877abab098c6e63a0e8 | /683/CH13/EX13.2/CKJ_2.sce | bd3da83108fca42d091979e0eb8ec5c5142c2ba8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 574 | sce | CKJ_2.sce | // sum 13-2
clc;
clear;
P=40*10^3;
sigut=490;
FOS=4;
sigts=sigut/FOS;
sigcs=1.4*sigts;
sigs=0.8*sigts;
d=sqrt((4*P)/(%pi*sigts));
d=21;
sigcc=1.4*330/4;
Tc=0.8*330/4;
t=d/3;
b=P/(2*t*Tc);
b=31;
t=10;
d1=28;
d2=40;
c=d/2;
c=15;
a=P/(2*(d2-d1)*98);
a=20;
L=(2*a)+(2*b)+(2*c)+(2*3);
// printing data in scilab o/p window
printf("d is %0.0f mm ",d);
printf("\n d1 is %0.0f mm ",d1);
printf("\n t is %0.0f mm ",t);
printf("\n b is %0.0f mm ",b);
printf("\n d2 is %0.0f mm ",d2);
printf("\n L is %0.0f mm ",L); |
6da8f55481a4c2bb55d94bc01f30b984028941b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3401/CH8/EX8.6/Ex8_6.sce | f13c2a04c0c4725d14e38054efba593b25137053 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 243 | sce | Ex8_6.sce | clc
T=300 //K
k=8.617*10**-5//eV/K
e=1.6*10**-19 //C
Vt=0.0259 //v
lp0=10^-3 //A
taup0=10^-7 //s
Idq=1*10**-3//A
Cd=(1*lp0*taup0)/(2*Vt)
disp(Cd,"diffusion capacitance in F is= ")
vd=(Vt/Idq)
disp(vd,"diffusion in ohm is= ")
|
c99c01a3b4c25714f38c6c06534eba58935409d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH18/EX18.12/18_12.sce | 5bb5e9e2272c469d14ac0a5cab3a11ce11cf2d69 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 647 | sce | 18_12.sce | //Chapter 18, Problem 12
clc;
//initializing the variables:
L = 6; //inductance in henry
r = 10; //resistance in ohms
V = 120; //supply voltage
taw = 0.3; //time constant
t1 = 1; // in secs
//calculation:
R = (L/taw) - r
Rt = R + r
I = V/Rt
i2 = 0.1*I
i1 = I*(%e^(-1*t1/taw))
t2 = -1*taw*log((i2/I))
printf("\n (a)Resistance of the coil = %.0f ohm\n\n",R)
printf("\n (b)Current flowing in the circuit one second after the shorting link has been placed = %.3f A\n\n",i1)
printf("\n (c)The time for the current to decay to 0.1 times of initial value = %.3f sec\n\n",t2)
|
b7bfdf894111c0868783bfb4dcb1d58c1c81780d | b08e5039c2ae3d6ed2405cb1565b86c1d6f55321 | /dz1_viraz.sce | ca9936d2511cdb30a96822735262ac98563c5d53 | [] | no_license | davendiy/scilab | 3380b4085f959ab381a11f183b12982b2757ff5a | 97176ea0eea36d1f02039e5dd0aebf041a39ec23 | refs/heads/master | 2021-09-28T02:02:41.095834 | 2018-11-13T09:15:17 | 2018-11-13T09:15:17 | 103,492,502 | 0 | 0 | null | 2018-11-13T09:15:18 | 2017-09-14T06:05:50 | null | UTF-8 | Scilab | false | false | 237 | sce | dz1_viraz.sce | //dz №1 завдання 3
// Written by David Zashkolnyi, 1 course, 13.09.2017
a=0.02456
b=0.007823
c=input("введите переменную с")
y=c^3/13*(a-b)^3*cos(a*c^2)
disp("c^3/13*(a-b)^3*cos(a*c^2)="+string(y))
|
11d14cd399deda7e0dbf7c846850f9013bc807fc | f7d0f456b8e29ce4f81d9cbe1ca2a57fede3bc5d | /solvers/cyclist/bench/entl/01.tst | e8685c0b0639f18e0f7485a2dd73bf1224beb9a3 | [] | no_license | mihasighi/smtcomp14-sl | 22467201b3f7e74e2001e259134c040d80afd6b6 | 8dd4ff648e16e31acd193f882082df349e211251 | refs/heads/master | 2021-06-06T17:01:18.752298 | 2018-06-28T10:04:32 | 2018-06-28T10:04:32 | 19,853,856 | 1 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 33 | tst | 01.tst | x->y * RList(y,z) |- RList(x,z)
|
90940c4c146ad133efc2c48065e3966d6e0a9399 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH10/EX10.8/8.sce | 91b5cc970c2accfafe6246825b3f4bd79193b899 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 669 | sce | 8.sce | clc
clear
//INPUT DATA
l=1*10^-2//length of the intrinsic Ge rod in m
b=1*10^-3//breadth of the intrinsic Ge rod in m
t=1*10^-3//thickness of the intrinsic Ge rod in m
T=300//temperature of the intrinsic Ge rod in K
me=0.39//The electron mobility in m^2 V^-1 s^-1
mh=0.19//The hole mobility in m^2 V^-1 s^-1
ni=2.5*10^19//intrinsic carrier conduction in m^3
e=1.6*10^-19//charge of electron in coulombs
//CALCULATION
ec=(ni*e*(me+mh))//The electrical conductivity at room temperature in ohm^-1 m^-1
A=(b*t)//area in m^2
R=(l/(ec*A))//The resistance of an intrinsic Ge rod in ohm
//OUTPUT
printf('The resistance of an intrinsic Ge rod is %i ohm',R)
|
4fafc7e32ce27d65e456a06bd1605fb1aed3ed06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH4/EX4.30/4_30.sce | cbef907b1269617ff86625dbadf1d34417bbaba8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sce | 4_30.sce | clc
//initialisation of variables
R= 1.987 //cal/mole K
T1= 25 //C
T2= 76.8 //C
P2= 760 //mm
P1= 115 //mm
//CALCULATIONS
H= 2.303*R*(273.2+T1)*(273.2+T2)*log10(P2/P1)/(T2-T1)
//RESULTS
printf (' molar heat of vapourisation= %.3f cal mole^-1',H)
|
1cc0061d8c5aae04b7752382c3b8f0c305227dce | 05d972abeab11d213913aa6124e6a2104d859132 | /etc/AmnShutdown.tst | 9156dc05042a8f2e0a56817783698a73d0b563ba | [] | no_license | LivTel/sdb_puller | 50ac8289d57c4927245ca70c4809cf2b9c807e82 | 9e573ee4d20035f846cb010a02099b9a25dc4e76 | refs/heads/master | 2022-06-24T04:59:10.771334 | 2019-12-18T19:10:47 | 2019-12-18T19:10:47 | 179,494,067 | 0 | 0 | null | 2020-07-01T23:30:44 | 2019-04-04T12:34:54 | C | UTF-8 | Scilab | false | false | 52 | tst | AmnShutdown.tst | echo, Shutdown for AMN
shutdown, OMC
shutdown, MSC
|
6f63d9545c8e1d85e5577f22a84e6d7818e2d5e2 | b67defe3c1cae63dd1a79578f840d069568034e6 | /scilab/q-normal-coins.sci | 4199135466ccbc07a7285b9def3d2cf9cf535e01 | [] | no_license | wmacevoy/luck | bf5d93ce00e8136634d715057a97706d3aa804b3 | 47e5c8eb1782a1b4f3f5b9e7583290d9a842532e | refs/heads/master | 2023-05-03T14:46:51.353817 | 2023-04-25T03:13:44 | 2023-04-25T03:13:44 | 33,452,250 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 399 | sci | q-normal-coins.sci | p=[1/4, 3/4];
x=[0,1];
mu=p(1)*x(1)+p(2)*x(2);
sigma=sqrt(p(1)*(x(1)-mu)^2+p(2)*(x(2)-mu)^2);
n=10;
a=bool2s(rand(1,n) > 0.5);
b=bool2s(rand(1,n) > 0.5);
m=max(a,b);
zl=(m-mu) ./ sigma - sqrt(0.5);
for i=1:n
printf("zl(%d)=%f\n",i,zl(i));
end
zl_sum=sqrt(sum((zl+sqrt(0.5)) .^ 2))-sqrt(n-0.5);
printf("zl(total)=%f\n",zl_sum);
L_sum = 0.5*(1+erf(zl_sum));
printf("total normal luck=%f\n",L_sum);
|
f2090edfb62d72905629bb96aac2a1aba572bf3e | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH6/EX6.2.a/data6_2.sci | d7097aaf5e6234d9f52f0cfe842a73ffccf4f05a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 339 | sci | data6_2.sci |
//(Power Screws) Example 6.1
//Number of threads n
n = 2
//Load to be raised W (kN)
W = 300
//Nominal diameter of the screw d (mm)
d = 100
//Pitch of the screw p (mm)
p = 12
//Coefficient of friction at the screw threads mu
mu = 0.15
//For ISO Metric Trapezoidal threads theta (degree)
theta = 15
//Neglect collar friction
|
a44f3c9681fc9de3a9527aa428682b26d5957062 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH5/EX5.25/Ex5_25.sce | 98245e279c80e598481f51054539077ccdae4c68 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,171 | sce | Ex5_25.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 5 : INDUCTION MACHINES
// EXAMPLE : 5.25
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
m1 = 3; // Total Number of phase in 1st Induction Motor
p1 = 6; // Total number of Poles of 1st Induction Motor
f = 50; // Frequency in Hertz
m2 = 3; // Total Number of phase in 2nd Induction Motor
p2 = 10; // Total number of Poles of 2nd Induction Motor
// CALCULATIONS
Ns1 = (120*f)/p1; // Synchronous speed of 1st Induction Motor in RPM
Ns2 = (120*f)/p2; // Synchronous speed of 2nd Induction Motor in RPM
Nscu = (120*f)/(p1+p2); // Speed during cumalative casade in RPM
Ndiff = (120*f)/(p2-p1); // Speed during cumalative casade in RPM
// DISPLAY RESULTS
disp("EXAMPLE : 5.25 : SOLUTION :-");
printf("\n (a) Range of speed is %.f - %.f - %.f - %.f RPM \n",Nscu,Ns2,Ns1,Ndiff)
|
f3ca7f18049a8e78fa4d1256e1b80e3187fdc748 | 449d555969bfd7befe906877abab098c6e63a0e8 | /162/CH6/EX6.6.b/example66b.sce | 65ee0e229c400b712e54a8aeb9ef4cb2720bcdda | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 115 | sce | example66b.sce | //Example 6.6b
clc;
syms z n;
x=(1/3)^n;
X1=symsum(x*(z^-n),n,0,%inf);
X2=symsum(x*(z^-n),n,8,%inf);
X=X1-X2; |
225a9e8c9177f4ac60878b647feb7e711e8598a6 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.12_7.tst | 5c350daa98df9332bd42971b9357986e2c22e6e6 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 430,835 | tst | 5.12_7.tst | 12 366:1 390:1 449:1 885:1 2259:1 2570:1 3510:1 4058:1 4296:1 4621:1 6024:1 6537:1 6630:1 7024:1 7372:1 7517:1 7538:1 7609:1 8067:1 9232:1 11534:1 11744:1 13054:1 13266:1 13350:1 13619:1 15060:1 16208:1 16563:1 17275:1 17331:1 17388:1 18223:22 19081:1 21588:1 21972:1 22040:1 22882:1 23414:1 23776:1 25366:1 25484:1 26923:1 27689:1 28178:1 28184:1
12 88:1 94:1 366:1 390:1 449:2 512:1 867:1 885:1 994:1 1289:1 1331:1 1563:1 1566:1 1842:1 2054:1 2252:1 2259:1 2334:1 2344:1 2475:1 2570:1 2573:1 2766:1 3196:1 3442:1 3510:1 3779:1 4058:1 4173:1 4296:1 4621:1 4906:1 5141:1 5179:1 5223:1 5233:2 5294:1 5386:1 6024:1 6077:1 6155:1 6230:1 6253:1 6254:1 6501:1 6537:1 6630:1 7024:1 7278:1 7372:1 7390:1 7447:1 7448:1 7469:1 7517:2 7538:1 7609:1 7634:1 7660:1 7741:1 8067:1 8869:1 8966:1 9232:1 9700:1 9813:1 10093:1 10419:1 10428:1 10793:1 11307:1 11461:1 11534:1 11598:1 11744:1 11905:1 13054:2 13266:1 13306:1 13350:1 13387:1 13619:1 13649:1 13849:1 14002:1 14169:1 14406:1 14659:1 14931:1 15060:1 15234:1 15314:1 15475:1 15481:1 15597:1 15805:1 15937:1 16208:1 16563:1 17066:1 17175:1 17275:1 17331:1 17388:1 17985:1 18223:92 18405:1 18667:1 19029:1 19072:1 19081:1 19319:1 19533:1 19601:1 19670:1 19840:1 20042:1 20175:1 20409:1 20892:1 21055:1 21179:1 21185:1 21348:1 21588:1 21682:1 21972:2 22040:1 22120:1 22148:1 22458:1 22490:1 22566:1 22791:1 22870:1 22882:1 23064:1 23237:1 23242:1 23353:1 23414:1 23776:1 23904:1 23942:1 24110:1 24180:1 24202:1 24854:1 25366:1 25484:1 25750:1 25757:1 25910:1 25929:1 26066:1 26506:1 26535:1 26609:1 26734:1 26759:1 26823:1 26876:1 26923:1 27211:1 27308:1 27393:1 27631:1 27668:1 27689:1 28024:1 28093:1 28178:2 28184:1 28760:1
12 88:1 94:1 366:1 390:1 449:2 467:1 512:1 867:1 885:1 994:1 1289:1 1331:1 1463:1 1563:1 1566:1 1842:1 2054:1 2252:1 2259:1 2334:1 2344:1 2475:1 2570:1 2573:1 2766:1 3196:1 3442:1 3510:1 3779:1 3945:1 4058:1 4173:1 4296:1 4621:1 4906:2 5141:1 5179:1 5210:1 5223:1 5233:2 5261:1 5294:3 5386:1 5676:1 6024:1 6077:1 6155:1 6158:1 6230:1 6253:1 6254:1 6501:1 6537:1 6630:1 7024:1 7278:1 7372:1 7390:1 7447:1 7448:1 7469:1 7517:2 7538:1 7609:1 7634:1 7660:1 7741:1 8067:1 8421:1 8869:1 8966:1 9216:1 9232:1 9286:1 9298:1 9700:1 9813:1 10093:1 10419:1 10428:1 10692:1 10793:1 10914:1 11307:1 11461:1 11534:1 11598:1 11744:1 11905:1 12476:1 12851:1 13054:2 13266:1 13306:1 13350:1 13387:1 13619:1 13649:1 13849:1 14002:1 14169:1 14406:1 14659:1 14926:1 14930:1 14931:1 15060:1 15089:1 15234:1 15278:1 15314:1 15475:1 15481:1 15597:1 15668:1 15805:1 15937:1 16208:1 16563:1 16817:1 17066:1 17175:1 17275:1 17331:1 17370:1 17388:1 17419:1 17985:1 18060:1 18223:115 18288:1 18405:1 18667:1 19029:1 19072:1 19081:1 19319:1 19533:1 19601:1 19670:1 19840:1 20042:1 20175:1 20409:1 20892:1 21055:1 21179:1 21185:1 21348:1 21588:1 21682:1 21972:2 22040:1 22120:1 22148:1 22275:1 22458:1 22490:1 22566:1 22791:1 22870:1 22882:1 23064:1 23237:1 23242:1 23353:1 23414:1 23672:1 23776:1 23904:1 23942:1 24110:1 24180:1 24202:1 24854:1 25366:1 25484:1 25750:1 25757:1 25777:1 25910:1 25929:1 26066:1 26397:1 26506:1 26535:1 26609:1 26734:1 26759:1 26823:1 26876:1 26923:1 27211:1 27308:1 27393:1 27631:1 27668:1 27689:1 27939:1 28024:1 28093:1 28178:2 28184:1 28760:2
12 88:1 94:1 144:1 366:1 390:1 449:2 467:1 512:1 867:1 885:1 994:1 1246:1 1289:1 1331:1 1341:1 1463:1 1563:1 1566:1 1701:1 1781:1 1816:1 1827:1 1842:1 2054:1 2185:1 2252:1 2254:1 2259:1 2334:1 2344:1 2475:1 2570:1 2573:1 2582:1 2766:1 3196:1 3283:1 3294:1 3442:1 3510:1 3779:1 3850:1 3879:1 3911:1 3945:1 4058:1 4173:1 4296:1 4386:1 4525:1 4621:1 4795:1 4906:3 5141:2 5179:1 5210:1 5223:1 5233:2 5261:1 5294:4 5386:1 5419:1 5516:1 5676:1 5947:1 6024:1 6077:1 6155:1 6158:1 6230:1 6253:1 6254:2 6501:1 6537:1 6630:1 6690:1 7024:1 7278:1 7372:1 7390:1 7447:1 7448:1 7469:1 7517:3 7538:1 7609:1 7634:1 7660:1 7741:1 8067:1 8395:1 8421:1 8795:1 8869:1 8966:1 9167:1 9216:1 9232:1 9286:1 9298:1 9355:1 9700:2 9813:1 9968:1 10022:1 10093:1 10419:1 10428:1 10685:1 10692:2 10701:1 10737:1 10793:1 10810:1 10859:1 10914:1 11067:1 11095:1 11109:1 11256:1 11307:1 11419:1 11461:1 11534:1 11598:1 11744:1 11755:1 11905:1 12476:1 12546:1 12552:1 12572:1 12787:1 12851:1 13054:2 13131:1 13266:1 13306:1 13350:1 13387:1 13619:1 13649:1 13849:1 13969:1 14002:1 14155:1 14169:1 14381:1 14401:1 14406:3 14436:1 14633:1 14659:1 14811:1 14926:1 14930:1 14931:1 15060:1 15089:1 15234:1 15278:1 15314:2 15475:1 15481:1 15597:1 15668:1 15805:1 15937:1 15941:1 16182:1 16208:1 16519:1 16563:1 16688:1 16817:1 16833:1 16956:1 17066:1 17175:1 17275:1 17329:1 17331:1 17370:1 17388:1 17391:1 17419:1 17985:1 17993:1 18060:1 18223:176 18288:1 18405:1 18407:1 18536:1 18667:1 19029:1 19072:1 19081:1 19319:1 19533:1 19601:1 19645:1 19670:1 19746:1 19840:1 19972:1 20042:1 20141:1 20175:1 20236:1 20306:1 20399:1 20409:1 20892:1 21055:1 21159:1 21179:1 21185:2 21251:1 21348:1 21588:1 21682:1 21972:2 22040:1 22120:1 22148:1 22157:1 22169:1 22275:1 22458:1 22490:1 22566:1 22791:1 22870:1 22882:1 23064:1 23237:1 23242:1 23353:1 23414:1 23493:1 23672:1 23776:1 23904:1 23942:1 24110:1 24174:1 24180:1 24185:1 24202:1 24499:1 24854:1 24894:1 24992:1 25366:1 25484:1 25619:1 25673:1 25750:1 25757:1 25777:1 25825:1 25910:1 25929:3 26066:1 26397:1 26451:1 26506:1 26535:1 26557:1 26609:1 26734:1 26759:1 26823:1 26876:1 26923:1 27016:1 27211:1 27308:1 27353:1 27361:1 27393:1 27491:1 27631:1 27668:1 27689:1 27710:1 27860:1 27939:1 28024:1 28093:1 28132:1 28178:2 28184:1 28559:1 28611:2 28760:3
12 88:1 94:1 144:1 366:1 390:1 411:1 449:2 467:1 512:1 732:1 867:1 872:1 885:1 994:1 1094:1 1190:1 1233:1 1246:1 1289:1 1331:1 1341:1 1463:1 1563:1 1566:1 1667:1 1701:1 1781:1 1793:1 1816:1 1827:1 1842:1 2054:1 2185:1 2188:1 2229:1 2252:1 2254:1 2255:1 2259:1 2334:1 2344:1 2475:1 2570:1 2573:1 2582:1 2766:1 2962:1 3196:1 3283:1 3294:1 3442:1 3477:1 3510:1 3779:1 3850:2 3879:2 3911:1 3945:1 4047:1 4058:1 4173:1 4296:1 4386:1 4525:1 4621:1 4795:1 4906:3 5141:2 5179:1 5210:1 5223:1 5233:2 5261:1 5294:5 5386:1 5419:1 5516:1 5676:1 5947:1 6024:1 6077:1 6155:1 6158:1 6230:1 6253:1 6254:2 6403:1 6501:1 6537:1 6630:1 6690:1 6783:1 7024:1 7278:1 7372:1 7390:1 7447:1 7448:1 7469:1 7517:4 7538:1 7609:1 7634:1 7660:1 7741:1 8067:1 8238:1 8395:2 8421:1 8795:1 8869:1 8966:1 9055:1 9167:1 9216:1 9232:1 9286:1 9298:1 9355:1 9443:1 9449:1 9700:2 9813:1 9968:1 10022:1 10093:1 10101:1 10419:1 10428:2 10685:1 10692:2 10701:1 10737:1 10793:1 10810:2 10859:1 10914:1 11067:1 11095:1 11109:1 11256:1 11307:1 11419:1 11461:1 11534:1 11598:1 11638:1 11676:1 11744:1 11755:1 11905:1 12476:1 12546:1 12552:1 12572:1 12756:1 12787:1 12851:1 13054:2 13131:1 13198:1 13266:1 13306:1 13322:1 13350:1 13387:1 13619:1 13649:1 13849:1 13955:1 13969:1 14002:1 14144:1 14155:1 14169:1 14354:1 14381:1 14401:1 14406:3 14436:1 14633:1 14659:1 14811:1 14919:1 14926:1 14930:1 14931:1 15011:1 15060:1 15089:1 15234:1 15278:1 15314:2 15475:1 15481:1 15597:1 15668:1 15742:1 15805:1 15937:1 15941:1 16182:1 16208:1 16519:1 16563:1 16688:1 16817:1 16833:1 16956:1 17066:1 17175:1 17266:1 17275:1 17329:1 17331:1 17370:1 17388:1 17391:1 17419:1 17985:1 17993:1 18002:1 18060:1 18223:208 18288:1 18405:1 18407:1 18536:1 18667:1 19029:1 19072:1 19081:1 19319:1 19372:1 19419:1 19527:1 19533:1 19601:1 19645:1 19670:1 19717:1 19746:1 19840:1 19972:1 20042:1 20068:1 20141:1 20175:1 20236:1 20306:1 20399:1 20409:1 20892:1 21055:1 21159:2 21179:1 21185:2 21251:1 21348:1 21588:1 21682:1 21781:1 21972:2 22039:1 22040:1 22120:1 22148:1 22157:1 22169:1 22275:1 22458:1 22490:1 22566:1 22791:1 22870:1 22882:1 23046:1 23064:1 23237:1 23242:1 23308:1 23353:1 23414:1 23493:1 23672:1 23776:1 23904:1 23942:1 24110:1 24174:1 24180:1 24185:1 24202:1 24499:1 24701:1 24854:1 24867:1 24894:1 24895:1 24992:1 25305:1 25366:1 25467:1 25484:1 25619:1 25673:1 25750:1 25757:1 25777:1 25825:1 25910:1 25929:3 26066:1 26397:1 26451:1 26506:1 26535:1 26557:1 26609:1 26734:1 26759:1 26819:1 26823:1 26826:1 26876:1 26923:1 27016:1 27089:1 27211:1 27245:1 27308:1 27353:1 27361:1 27393:1 27465:1 27491:1 27631:1 27668:2 27689:1 27710:1 27860:1 27939:1 28024:1 28093:1 28132:1 28178:2 28184:1 28559:1 28611:2 28760:3
12 88:1 94:1 144:1 169:1 366:1 390:1 411:1 449:2 467:1 512:1 605:1 732:1 867:1 872:1 885:1 890:2 919:1 994:1 1094:1 1190:1 1233:1 1246:1 1289:1 1331:1 1341:1 1463:1 1563:1 1566:1 1631:1 1667:1 1701:1 1781:1 1793:1 1816:1 1827:1 1842:1 1876:1 1989:1 2054:1 2174:1 2185:2 2188:1 2229:1 2245:1 2252:1 2254:1 2255:1 2259:1 2265:1 2334:1 2344:1 2475:1 2502:1 2570:1 2573:1 2582:1 2755:1 2766:1 2962:1 2963:1 3196:1 3268:1 3283:1 3294:1 3442:1 3477:1 3510:1 3556:1 3660:1 3779:1 3850:2 3879:2 3911:1 3945:1 3981:1 4047:1 4058:1 4127:1 4173:1 4191:1 4296:1 4386:1 4525:1 4621:1 4795:1 4906:3 4922:1 4931:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:2 5294:6 5354:1 5386:1 5419:1 5516:1 5676:1 5864:1 5934:1 5947:1 5954:1 6024:1 6077:1 6148:1 6155:1 6158:1 6230:1 6247:1 6253:1 6254:2 6403:1 6501:1 6537:1 6630:1 6654:1 6690:1 6783:1 6876:1 7024:1 7062:1 7278:1 7290:1 7372:1 7390:1 7447:2 7448:1 7469:1 7517:6 7538:1 7543:1 7609:1 7634:1 7660:1 7741:1 7979:1 8067:1 8238:1 8351:1 8395:2 8421:1 8458:1 8602:1 8769:1 8795:1 8869:1 8901:1 8966:1 9001:1 9055:1 9167:1 9216:1 9232:1 9286:1 9298:1 9355:1 9443:1 9449:1 9646:2 9700:2 9813:1 9968:1 10022:1 10093:1 10101:1 10419:1 10428:2 10685:1 10692:2 10701:1 10706:1 10737:1 10793:1 10810:2 10859:1 10914:1 11067:1 11087:1 11095:1 11109:1 11116:1 11208:1 11256:2 11307:1 11419:1 11461:1 11500:1 11534:1 11598:1 11638:1 11676:1 11744:1 11755:1 11855:1 11905:1 12250:1 12476:1 12480:1 12546:1 12552:1 12572:1 12756:1 12787:1 12851:1 12895:1 13054:2 13131:1 13190:1 13198:1 13266:1 13306:2 13322:1 13347:1 13350:1 13387:1 13489:1 13619:1 13649:1 13791:1 13849:1 13955:1 13969:1 13970:1 14002:1 14144:1 14155:1 14169:1 14354:1 14381:1 14401:1 14406:3 14436:1 14633:1 14655:1 14659:1 14725:1 14811:1 14881:1 14919:1 14926:1 14930:1 14931:1 15011:1 15060:1 15089:1 15096:1 15234:2 15255:1 15259:1 15278:1 15285:1 15314:2 15475:1 15481:1 15597:1 15668:1 15686:1 15742:2 15794:1 15805:1 15829:1 15937:1 15941:1 16142:1 16182:1 16208:1 16519:1 16563:1 16688:1 16817:1 16833:1 16956:1 17066:1 17175:1 17247:1 17266:1 17275:1 17329:1 17331:1 17370:1 17388:1 17390:1 17391:1 17419:1 17436:1 17985:1 17993:1 18002:1 18049:1 18060:1 18223:265 18288:1 18405:1 18407:1 18536:1 18667:1 18838:1 19029:2 19072:1 19081:1 19225:1 19319:1 19372:1 19415:1 19419:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19717:1 19746:1 19840:1 19972:1 20039:1 20042:1 20068:1 20141:1 20175:1 20236:1 20306:1 20399:1 20409:1 20438:1 20892:1 20953:1 21055:1 21159:2 21179:1 21185:2 21210:1 21251:1 21348:1 21380:1 21588:1 21682:1 21698:1 21781:2 21917:1 21972:2 22039:1 22040:1 22120:1 22148:1 22157:1 22169:1 22265:1 22270:1 22275:1 22458:1 22490:1 22566:1 22791:1 22809:1 22870:1 22882:1 22950:1 23016:1 23046:1 23064:1 23237:1 23242:1 23308:1 23353:1 23414:1 23493:1 23527:1 23646:1 23672:1 23736:1 23776:1 23904:2 23942:1 24022:1 24110:1 24174:1 24180:1 24185:1 24202:1 24247:1 24499:1 24636:1 24652:1 24701:1 24854:2 24867:2 24894:1 24895:1 24936:1 24992:1 25019:1 25094:1 25305:1 25366:1 25467:1 25484:1 25619:1 25673:1 25750:1 25757:1 25777:1 25825:1 25910:2 25929:3 25992:1 26066:1 26397:1 26451:1 26489:1 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26734:1 26759:1 26819:1 26823:1 26826:1 26876:1 26907:1 26923:1 26960:1 27016:1 27089:1 27200:1 27211:1 27245:1 27308:1 27353:1 27361:1 27393:1 27465:1 27469:1 27491:1 27504:1 27520:1 27609:1 27631:2 27668:3 27689:1 27710:1 27860:1 27892:1 27939:1 28024:1 28093:1 28132:1 28172:1 28178:2 28184:1 28543:1 28550:1 28559:1 28611:2 28760:3
12 88:1 94:1 144:1 169:1 366:1 390:1 411:1 449:2 467:1 512:1 605:1 732:1 867:1 872:1 885:1 890:2 919:1 994:1 1059:1 1094:1 1190:1 1233:1 1246:1 1289:1 1331:1 1341:1 1404:1 1463:1 1563:1 1566:1 1631:1 1667:1 1701:1 1781:1 1793:1 1816:1 1827:1 1842:1 1876:1 1989:1 2054:1 2127:1 2174:1 2185:2 2188:1 2229:1 2245:1 2252:1 2254:1 2255:1 2259:1 2265:1 2334:1 2344:1 2475:1 2502:1 2509:1 2570:1 2573:1 2582:1 2755:2 2766:1 2962:1 2963:1 3196:1 3268:1 3283:1 3294:1 3442:1 3477:1 3510:1 3556:1 3660:1 3777:1 3779:1 3850:2 3879:2 3911:1 3945:1 3981:1 4047:1 4058:1 4127:1 4173:1 4191:1 4211:1 4296:1 4386:1 4525:1 4621:1 4681:1 4795:1 4906:3 4922:1 4923:1 4931:1 4971:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:3 5294:6 5354:1 5386:1 5419:1 5495:1 5516:1 5640:1 5676:1 5864:1 5934:1 5947:1 5954:1 6024:1 6077:1 6148:1 6155:1 6158:1 6230:1 6247:1 6253:1 6254:2 6403:1 6501:1 6537:1 6616:1 6630:1 6654:2 6690:1 6783:1 6876:1 7024:1 7062:1 7248:1 7278:1 7290:1 7372:1 7390:1 7447:2 7448:1 7469:1 7517:6 7538:1 7543:1 7609:1 7634:1 7660:1 7741:1 7979:1 8023:1 8067:1 8238:1 8351:1 8395:2 8403:1 8421:1 8458:1 8602:1 8769:1 8795:1 8869:1 8901:1 8966:1 9001:1 9055:1 9167:1 9216:1 9232:1 9286:1 9298:1 9355:1 9443:1 9449:1 9490:1 9646:2 9700:2 9813:1 9869:1 9968:1 10022:1 10093:1 10101:1 10305:1 10404:1 10419:1 10428:2 10685:1 10692:2 10701:1 10706:1 10737:1 10793:1 10810:2 10859:1 10914:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11208:1 11231:1 11256:2 11307:1 11419:1 11461:1 11500:1 11534:1 11598:1 11638:1 11676:1 11744:1 11755:1 11855:1 11905:1 11926:1 12250:1 12330:1 12455:1 12456:1 12476:1 12480:1 12490:1 12546:1 12552:1 12572:1 12756:1 12787:1 12851:1 12895:1 13054:2 13131:1 13149:1 13190:1 13198:1 13266:1 13306:2 13322:1 13347:1 13350:1 13387:1 13489:1 13619:1 13649:1 13791:1 13849:1 13955:1 13969:1 13970:1 14002:1 14068:1 14144:1 14155:1 14169:1 14334:1 14354:1 14381:1 14401:1 14406:3 14436:1 14633:1 14655:1 14659:1 14725:1 14811:1 14881:1 14919:1 14926:1 14930:1 14931:1 15011:1 15060:1 15089:1 15096:1 15234:2 15255:1 15259:1 15277:1 15278:1 15285:1 15314:2 15475:1 15481:1 15597:1 15658:1 15668:1 15686:1 15742:2 15794:1 15805:1 15829:1 15937:1 15941:1 16117:1 16142:1 16182:1 16208:1 16519:1 16563:1 16688:1 16817:1 16833:1 16856:1 16956:1 17066:1 17175:1 17247:1 17266:1 17275:1 17329:1 17331:1 17370:1 17388:1 17390:1 17391:1 17419:1 17436:1 17669:1 17985:1 17993:1 18002:1 18049:1 18060:1 18223:313 18288:1 18405:1 18407:1 18536:1 18667:1 18838:1 19029:2 19072:1 19081:1 19225:2 19319:1 19372:1 19415:1 19419:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19717:1 19722:1 19746:1 19840:1 19972:1 20039:1 20042:1 20068:1 20141:1 20175:1 20236:1 20306:1 20350:1 20399:1 20409:1 20436:1 20438:2 20510:1 20892:1 20953:1 21055:1 21159:2 21179:1 21185:2 21210:1 21251:1 21348:1 21380:1 21383:1 21588:1 21682:1 21698:1 21781:2 21917:1 21924:1 21972:2 22039:1 22040:1 22052:1 22120:1 22148:1 22157:1 22169:1 22265:1 22270:1 22275:1 22458:1 22490:1 22566:1 22643:1 22791:1 22809:1 22870:1 22882:1 22926:1 22950:1 23016:1 23046:1 23064:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23493:1 23502:1 23527:1 23646:1 23672:1 23736:1 23776:1 23904:2 23942:1 24022:2 24110:1 24174:1 24180:1 24185:1 24202:1 24247:1 24499:1 24636:1 24652:1 24701:1 24854:2 24867:2 24894:1 24895:1 24936:1 24992:1 25019:1 25094:1 25191:1 25305:1 25366:1 25371:1 25435:1 25467:2 25484:1 25619:1 25673:1 25750:1 25757:1 25777:1 25825:1 25851:1 25910:2 25929:3 25992:1 26066:1 26168:1 26361:1 26397:1 26451:1 26489:1 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26734:1 26759:1 26809:1 26819:1 26823:1 26826:1 26876:1 26907:1 26923:1 26960:1 27016:1 27089:1 27200:1 27211:1 27245:1 27308:1 27353:1 27361:1 27393:1 27465:1 27469:1 27491:1 27504:1 27505:1 27520:1 27546:1 27609:1 27631:2 27647:1 27668:3 27689:1 27710:1 27860:1 27892:1 27939:1 28024:1 28093:1 28132:1 28172:1 28178:2 28184:1 28226:1 28426:1 28543:1 28550:1 28559:1 28611:2 28760:3
12 56:1 88:1 94:1 144:1 169:1 366:1 390:1 411:1 449:3 467:1 512:1 605:1 732:1 867:1 872:1 885:1 890:2 919:1 994:1 1026:1 1059:1 1094:1 1190:1 1233:1 1246:1 1289:1 1331:1 1341:1 1404:1 1463:1 1563:1 1566:1 1631:1 1664:1 1667:1 1701:1 1781:1 1793:1 1816:1 1827:1 1842:1 1876:1 1987:1 1989:1 2054:1 2127:1 2174:1 2185:2 2188:1 2229:1 2245:1 2249:1 2252:1 2254:1 2255:1 2259:1 2265:1 2303:1 2334:1 2344:1 2475:1 2502:1 2509:1 2570:1 2573:1 2582:1 2704:3 2755:2 2766:1 2962:1 2963:1 3196:1 3216:1 3237:1 3268:1 3283:1 3294:1 3442:1 3477:1 3510:1 3556:1 3660:1 3777:1 3779:1 3850:2 3879:2 3911:1 3945:1 3950:1 3981:1 4047:1 4058:1 4127:1 4173:1 4191:1 4211:1 4296:1 4386:1 4525:1 4621:1 4681:1 4795:1 4906:3 4922:1 4923:1 4931:1 4943:1 4971:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:3 5294:6 5354:1 5386:1 5419:1 5447:1 5464:1 5495:1 5516:1 5640:1 5676:1 5864:1 5934:1 5947:1 5954:1 6024:1 6077:1 6148:1 6155:1 6158:1 6230:1 6247:1 6253:1 6254:2 6403:1 6501:1 6537:1 6568:1 6616:1 6630:1 6654:2 6690:1 6727:1 6783:1 6876:1 6951:2 7024:1 7056:1 7062:1 7089:1 7248:1 7278:1 7290:1 7325:1 7372:1 7390:1 7447:2 7448:1 7469:1 7517:6 7538:1 7543:1 7551:1 7595:1 7609:1 7634:2 7660:1 7741:1 7979:1 8023:1 8031:1 8067:1 8238:1 8348:1 8351:1 8366:1 8395:2 8403:1 8421:1 8458:1 8490:1 8602:1 8653:1 8769:1 8795:1 8869:1 8901:1 8923:3 8958:1 8966:1 9001:1 9037:1 9055:1 9167:1 9216:1 9232:1 9286:1 9298:1 9316:1 9355:1 9443:1 9449:1 9490:1 9646:2 9700:2 9813:1 9869:1 9886:1 9968:1 10022:1 10093:1 10101:1 10244:1 10305:1 10404:1 10419:1 10428:2 10438:1 10685:1 10692:2 10701:1 10706:1 10737:1 10793:1 10810:2 10850:1 10859:1 10914:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11152:1 11208:1 11231:1 11256:2 11307:1 11419:1 11461:1 11500:1 11534:1 11598:1 11638:1 11676:1 11744:1 11755:1 11855:1 11905:1 11926:1 12010:1 12220:1 12250:1 12330:1 12346:1 12447:1 12452:1 12455:1 12456:1 12476:1 12480:1 12490:1 12546:1 12552:1 12572:1 12694:1 12756:1 12787:1 12851:1 12857:1 12871:1 12895:1 13054:2 13131:1 13149:1 13190:1 13198:1 13266:1 13306:2 13322:1 13347:1 13350:1 13368:1 13387:1 13462:1 13489:1 13564:1 13619:1 13631:2 13649:1 13791:1 13795:1 13849:1 13955:1 13969:1 13970:1 14002:1 14068:1 14144:1 14155:1 14169:1 14184:1 14233:1 14334:1 14354:1 14381:1 14401:1 14406:3 14436:1 14633:1 14655:1 14659:1 14725:1 14811:1 14822:1 14881:1 14919:1 14926:1 14930:1 14931:1 15011:1 15060:1 15089:1 15096:1 15234:2 15255:1 15259:1 15277:1 15278:1 15285:1 15300:1 15314:2 15475:1 15481:1 15534:1 15597:1 15658:1 15659:1 15668:1 15686:1 15742:2 15794:1 15801:1 15805:1 15820:1 15829:1 15916:1 15937:1 15941:1 16071:1 16088:1 16117:1 16142:1 16182:1 16208:1 16394:1 16519:1 16563:1 16627:1 16686:1 16688:1 16817:1 16833:1 16856:1 16956:1 17014:1 17021:1 17066:1 17175:1 17205:1 17247:1 17266:1 17275:1 17329:1 17331:1 17370:1 17388:1 17390:1 17391:1 17419:1 17436:1 17669:1 17670:1 17985:1 17993:2 18002:1 18004:1 18049:1 18060:1 18141:1 18223:378 18288:1 18405:1 18407:1 18536:1 18667:1 18838:1 19029:2 19072:1 19081:1 19225:2 19260:1 19319:1 19372:1 19415:1 19419:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19717:1 19722:1 19746:1 19840:1 19884:1 19972:1 20039:1 20042:1 20068:1 20141:1 20175:1 20236:1 20306:1 20350:1 20399:1 20409:1 20436:1 20438:2 20510:1 20604:1 20892:1 20953:1 21055:1 21159:2 21179:1 21185:2 21210:1 21251:1 21348:1 21380:1 21383:1 21433:1 21566:1 21588:1 21632:1 21682:1 21698:1 21781:2 21917:1 21924:1 21972:3 21985:1 22039:1 22040:1 22052:1 22120:1 22132:1 22148:1 22157:1 22169:1 22265:1 22270:1 22275:1 22458:1 22490:1 22566:1 22643:1 22791:1 22809:1 22861:1 22870:1 22882:1 22919:1 22926:1 22950:1 22972:1 23016:1 23037:1 23046:1 23064:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23493:1 23502:1 23527:1 23619:3 23646:1 23672:1 23736:1 23776:1 23870:1 23904:2 23942:1 24022:2 24110:1 24174:1 24180:1 24185:1 24202:1 24247:1 24499:1 24636:1 24652:1 24701:1 24854:2 24867:2 24894:1 24895:1 24911:1 24936:1 24992:1 25019:1 25094:1 25103:1 25148:1 25191:1 25305:2 25366:1 25371:1 25435:1 25467:2 25484:1 25619:2 25673:1 25750:1 25757:1 25777:1 25825:1 25851:1 25910:2 25929:3 25992:1 26066:1 26168:1 26361:1 26397:1 26451:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26734:1 26759:1 26809:1 26819:1 26823:1 26826:1 26876:1 26907:1 26923:1 26960:1 27016:1 27046:1 27089:1 27092:1 27200:1 27211:1 27245:1 27308:1 27312:3 27353:1 27361:1 27393:1 27465:1 27469:3 27491:1 27504:1 27505:1 27520:1 27546:1 27609:1 27631:2 27647:1 27668:3 27689:1 27710:1 27860:1 27892:1 27939:1 28010:1 28011:1 28024:1 28093:1 28132:1 28172:1 28178:2 28184:1 28226:1 28297:1 28426:1 28543:1 28550:1 28559:1 28611:2 28760:3
12 43:1 56:1 88:1 94:1 144:1 169:1 330:1 366:1 390:2 411:1 449:3 467:1 512:1 558:1 605:1 732:1 867:1 872:1 885:1 890:2 895:1 911:1 919:1 994:1 1026:1 1059:1 1094:1 1190:1 1196:1 1233:1 1246:1 1289:1 1331:1 1341:1 1404:3 1463:1 1563:1 1566:1 1631:1 1664:1 1667:1 1701:1 1781:1 1793:1 1816:2 1827:1 1842:1 1876:1 1987:1 1989:1 2054:1 2127:1 2174:1 2185:2 2188:1 2229:1 2245:1 2249:1 2252:1 2254:1 2255:1 2259:1 2265:1 2286:1 2303:1 2334:1 2344:1 2359:1 2440:1 2475:1 2502:1 2509:1 2570:1 2573:1 2582:1 2704:3 2755:2 2766:1 2962:1 2963:1 3196:1 3216:1 3237:1 3268:1 3283:1 3294:1 3442:1 3477:1 3510:2 3556:1 3660:1 3777:1 3779:1 3805:1 3850:2 3879:2 3911:1 3945:1 3950:1 3981:1 4012:1 4047:1 4058:1 4127:1 4173:1 4191:1 4211:1 4296:1 4386:1 4525:1 4621:1 4681:1 4795:2 4906:3 4922:1 4923:1 4931:1 4943:1 4971:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:4 5294:6 5354:1 5386:1 5419:1 5447:1 5464:1 5495:1 5516:1 5640:1 5676:1 5832:1 5864:1 5909:1 5910:2 5934:1 5937:1 5947:1 5954:1 5973:1 6024:1 6077:1 6148:1 6155:1 6158:1 6230:1 6247:1 6253:1 6254:2 6403:2 6501:1 6537:2 6568:1 6616:1 6630:1 6654:3 6690:1 6727:1 6783:1 6876:1 6951:2 7024:1 7056:1 7062:1 7089:1 7248:1 7276:1 7278:1 7290:1 7312:1 7325:1 7372:1 7390:1 7447:2 7448:1 7464:1 7469:1 7471:1 7517:6 7538:2 7543:1 7551:1 7595:1 7609:2 7634:2 7660:1 7741:1 7962:1 7979:1 8023:1 8031:1 8067:1 8205:1 8238:1 8348:1 8351:1 8366:1 8395:2 8403:1 8421:1 8458:1 8490:1 8602:1 8653:1 8660:1 8754:1 8769:1 8795:1 8869:1 8901:1 8923:3 8958:1 8966:1 9001:1 9037:1 9055:2 9136:1 9167:1 9216:1 9232:1 9286:1 9298:1 9316:1 9355:1 9411:1 9443:1 9449:1 9490:1 9646:2 9700:2 9813:1 9869:1 9886:1 9968:1 10022:1 10093:1 10101:2 10244:1 10305:2 10404:1 10419:1 10428:2 10438:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10793:1 10810:3 10850:1 10859:1 10870:1 10914:1 10933:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11152:1 11208:1 11231:1 11256:2 11307:1 11371:1 11419:1 11444:1 11461:1 11500:1 11534:1 11598:1 11638:1 11676:1 11744:1 11755:1 11855:1 11896:1 11905:1 11926:1 12010:1 12077:1 12220:1 12250:1 12330:1 12346:1 12447:1 12452:1 12455:1 12456:1 12476:1 12480:1 12490:1 12546:1 12552:1 12572:1 12668:1 12694:1 12756:1 12787:1 12851:1 12857:1 12871:1 12895:1 13054:2 13131:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:2 13322:1 13342:1 13347:1 13350:1 13368:1 13387:1 13462:1 13489:1 13564:1 13606:1 13619:1 13631:2 13649:1 13791:1 13795:1 13849:1 13955:1 13969:1 13970:1 14002:1 14068:1 14144:1 14155:1 14169:1 14184:1 14233:1 14334:1 14354:2 14381:1 14401:1 14406:3 14436:1 14532:1 14633:1 14655:1 14659:1 14725:1 14811:1 14822:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 15011:1 15060:1 15089:1 15096:2 15129:1 15234:2 15255:1 15259:1 15277:1 15278:1 15285:1 15300:1 15314:2 15475:1 15481:1 15534:1 15597:1 15658:1 15659:1 15668:1 15686:1 15742:2 15794:1 15801:1 15805:1 15820:1 15829:1 15916:1 15937:1 15941:1 16071:1 16088:1 16117:1 16142:1 16166:1 16182:1 16208:1 16243:1 16394:1 16519:1 16563:1 16627:1 16686:1 16688:1 16817:1 16833:1 16856:1 16956:1 17014:1 17021:1 17044:1 17066:1 17152:1 17175:1 17205:1 17247:1 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17370:1 17388:1 17390:1 17391:1 17419:1 17436:1 17649:1 17669:1 17670:1 17985:1 17993:2 18002:1 18004:1 18049:1 18060:1 18087:1 18141:1 18223:423 18245:1 18288:1 18405:1 18407:1 18536:1 18667:1 18838:1 19029:2 19072:1 19081:1 19114:1 19225:2 19260:1 19319:1 19345:1 19372:1 19415:1 19419:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19717:1 19722:1 19746:1 19758:1 19840:1 19856:1 19872:1 19884:1 19972:1 20039:1 20042:1 20068:1 20141:1 20175:1 20236:1 20258:1 20306:1 20350:1 20399:1 20409:1 20436:2 20438:2 20510:1 20604:1 20712:1 20892:1 20953:1 21055:1 21159:2 21179:1 21185:2 21210:1 21251:1 21348:1 21361:1 21380:1 21383:1 21433:1 21547:1 21566:1 21588:2 21632:1 21682:1 21698:1 21781:2 21795:1 21815:1 21917:1 21924:1 21972:3 21985:1 22039:1 22040:1 22052:1 22065:1 22120:1 22132:1 22148:1 22157:1 22169:1 22265:1 22270:1 22275:1 22458:1 22490:1 22566:1 22643:1 22791:1 22809:1 22861:1 22870:1 22882:1 22919:1 22926:1 22950:1 22972:1 23016:1 23037:1 23046:2 23064:1 23106:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23493:1 23502:1 23527:1 23619:3 23646:1 23672:1 23736:1 23776:1 23870:1 23876:1 23904:2 23942:1 24022:2 24110:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24355:1 24499:1 24600:1 24636:1 24652:1 24701:1 24854:2 24867:2 24894:1 24895:1 24907:1 24911:1 24936:1 24961:1 24992:1 25019:1 25094:1 25103:1 25148:1 25191:1 25305:2 25366:1 25371:1 25435:1 25467:2 25484:1 25619:2 25673:1 25750:1 25757:1 25777:1 25825:1 25851:1 25910:2 25929:3 25992:1 26042:1 26066:1 26168:1 26361:1 26397:1 26451:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26658:1 26684:1 26734:1 26759:1 26809:1 26819:1 26823:1 26826:1 26876:1 26907:1 26923:1 26960:1 27016:1 27046:1 27089:1 27092:1 27200:1 27211:1 27245:1 27308:1 27312:3 27353:1 27361:1 27393:1 27454:1 27465:1 27469:3 27475:1 27491:1 27504:1 27505:1 27520:1 27546:1 27609:1 27631:2 27647:1 27668:3 27689:2 27710:1 27746:1 27860:1 27892:1 27919:1 27939:1 27999:1 28010:1 28011:1 28024:1 28093:1 28132:1 28172:1 28178:2 28184:1 28226:1 28297:1 28426:1 28543:1 28550:1 28559:1 28561:1 28611:2 28760:3
12 43:1 56:1 88:1 94:1 144:1 169:1 330:1 366:1 390:2 411:1 449:3 467:1 512:1 558:1 605:1 732:1 867:1 872:1 885:1 890:2 895:1 911:1 919:1 989:1 994:1 1026:1 1059:1 1094:1 1190:1 1196:1 1201:1 1233:1 1246:1 1278:1 1289:1 1299:1 1331:1 1341:1 1404:3 1463:1 1563:1 1566:1 1631:1 1664:1 1667:1 1701:1 1781:1 1793:1 1802:1 1816:2 1827:1 1842:1 1868:1 1876:1 1880:1 1897:1 1987:1 1989:1 2054:1 2127:1 2174:1 2185:2 2188:1 2199:1 2229:1 2245:1 2249:1 2252:1 2253:1 2254:1 2255:1 2259:1 2265:2 2266:1 2281:1 2286:1 2303:1 2334:1 2344:1 2359:1 2440:1 2475:1 2502:1 2509:1 2570:1 2573:1 2582:1 2704:3 2755:2 2766:1 2962:1 2963:1 2992:1 2997:1 3159:1 3196:1 3216:1 3237:2 3268:1 3283:1 3294:1 3442:1 3477:1 3510:2 3556:1 3660:1 3762:1 3777:1 3779:1 3805:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:1 3981:1 4012:1 4047:1 4058:1 4127:1 4173:1 4191:1 4211:1 4296:1 4386:1 4400:1 4401:1 4525:1 4556:1 4621:1 4681:1 4795:2 4906:3 4922:1 4923:1 4931:1 4943:1 4971:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:4 5294:6 5354:1 5386:1 5419:1 5447:1 5464:2 5495:1 5516:1 5524:1 5640:1 5659:1 5676:1 5832:1 5864:1 5909:1 5910:2 5934:1 5937:1 5947:1 5954:1 5973:1 6024:1 6077:1 6148:1 6155:1 6158:1 6227:1 6230:1 6247:1 6253:2 6254:2 6387:1 6403:2 6501:1 6537:2 6568:1 6616:1 6630:2 6654:3 6690:1 6727:1 6783:1 6876:1 6951:2 7024:1 7056:1 7062:1 7073:1 7089:1 7248:1 7276:1 7278:2 7290:1 7312:1 7325:1 7372:1 7390:1 7447:3 7448:2 7464:1 7469:1 7471:1 7517:9 7538:2 7543:1 7551:1 7595:1 7609:2 7634:2 7660:1 7741:1 7829:1 7962:1 7979:1 8023:1 8031:1 8067:1 8205:1 8213:1 8238:1 8348:1 8351:1 8366:1 8395:2 8403:1 8421:1 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8754:1 8769:1 8795:1 8869:1 8901:1 8923:3 8958:1 8966:1 9001:1 9037:1 9052:1 9055:2 9136:1 9167:1 9216:1 9232:1 9273:1 9286:1 9298:1 9316:2 9355:1 9411:1 9443:1 9449:1 9490:2 9646:2 9700:2 9706:1 9748:1 9813:1 9869:1 9886:1 9968:1 10022:1 10093:1 10101:2 10244:1 10305:2 10404:1 10419:1 10428:3 10438:1 10462:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10793:1 10810:3 10850:1 10859:1 10870:1 10914:1 10933:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11152:1 11208:1 11231:1 11256:2 11307:1 11328:1 11371:1 11419:1 11444:1 11461:1 11500:1 11534:1 11598:1 11638:1 11676:1 11744:1 11755:1 11855:1 11896:1 11905:1 11926:1 11971:1 12010:2 12077:1 12214:1 12220:1 12250:1 12330:1 12346:1 12447:2 12452:1 12455:1 12456:1 12476:1 12480:1 12490:1 12546:1 12552:1 12572:1 12668:1 12694:1 12756:1 12787:1 12850:1 12851:1 12857:1 12871:1 12895:1 13021:1 13054:2 13131:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:2 13322:1 13342:1 13347:1 13350:1 13368:1 13387:1 13462:1 13489:1 13564:1 13606:1 13619:1 13631:2 13648:1 13649:1 13791:1 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 14002:1 14068:1 14099:1 14144:1 14155:1 14169:1 14184:1 14233:1 14334:1 14354:2 14381:1 14401:1 14406:3 14436:1 14532:1 14633:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15234:2 15255:1 15259:1 15277:1 15278:1 15285:1 15300:1 15314:2 15475:2 15481:1 15534:1 15597:1 15658:1 15659:1 15668:1 15685:1 15686:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:1 15916:1 15937:1 15941:1 16048:1 16071:1 16088:1 16117:1 16142:1 16166:1 16182:1 16208:1 16243:1 16245:1 16394:1 16429:1 16519:1 16554:1 16563:1 16627:1 16686:1 16688:1 16817:1 16833:1 16856:1 16956:1 17014:1 17015:1 17021:1 17026:1 17044:1 17066:1 17152:1 17175:1 17205:1 17247:1 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17370:1 17388:1 17390:1 17391:1 17419:1 17436:1 17639:1 17649:1 17669:1 17670:1 17785:1 17985:1 17993:2 18002:1 18004:1 18049:1 18060:1 18087:1 18136:1 18141:1 18223:459 18245:1 18288:1 18405:1 18407:1 18536:1 18667:1 18759:1 18836:1 18838:1 19029:2 19072:1 19081:1 19114:1 19124:1 19225:2 19260:1 19319:1 19345:1 19372:1 19415:1 19419:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19717:1 19722:1 19746:1 19758:1 19840:1 19856:1 19872:1 19884:1 19972:1 20039:1 20042:1 20068:1 20141:1 20175:1 20226:1 20236:1 20258:1 20306:1 20350:1 20384:1 20399:1 20409:1 20436:2 20438:2 20510:1 20604:1 20712:1 20892:1 20953:1 21055:1 21159:2 21168:1 21179:1 21185:2 21210:1 21251:1 21348:1 21361:1 21380:1 21383:1 21433:1 21547:1 21566:1 21588:2 21632:1 21682:1 21698:1 21774:1 21781:2 21792:1 21795:1 21815:1 21821:1 21917:1 21924:1 21959:1 21972:3 21985:1 22039:1 22040:1 22052:1 22065:1 22120:1 22132:1 22148:1 22157:1 22169:1 22265:1 22270:1 22275:1 22402:1 22458:1 22490:1 22566:2 22643:1 22791:1 22809:1 22818:1 22861:1 22870:1 22882:1 22919:1 22926:1 22950:1 22972:1 23016:1 23037:1 23046:2 23064:1 23081:1 23106:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23493:1 23502:1 23527:1 23595:1 23619:3 23646:1 23672:1 23736:1 23776:1 23862:1 23870:1 23876:1 23904:3 23942:1 24022:2 24110:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:1 24355:1 24499:1 24574:1 24600:1 24636:2 24652:1 24701:1 24854:2 24867:2 24888:1 24894:1 24895:1 24907:1 24911:1 24936:1 24961:1 24992:1 25019:1 25094:1 25103:1 25148:1 25191:1 25305:2 25366:1 25371:1 25435:1 25467:2 25484:1 25497:1 25619:2 25673:1 25740:1 25750:1 25757:1 25777:1 25825:1 25851:1 25873:1 25910:2 25929:3 25992:1 26042:1 26066:1 26075:1 26168:1 26361:1 26397:1 26451:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26658:1 26684:1 26734:2 26759:1 26809:1 26819:1 26823:1 26826:1 26849:1 26876:1 26907:1 26923:1 26960:1 27016:1 27046:2 27089:1 27092:1 27105:1 27200:1 27211:1 27245:1 27308:1 27312:3 27353:1 27361:1 27393:1 27454:1 27465:1 27469:3 27475:1 27491:1 27504:1 27505:1 27520:1 27546:1 27609:1 27631:3 27647:1 27668:4 27689:2 27710:1 27746:1 27860:1 27892:1 27919:1 27939:1 27999:1 28010:1 28011:1 28024:1 28093:1 28132:1 28153:1 28172:1 28178:2 28184:1 28226:1 28297:1 28426:1 28543:1 28550:1 28559:1 28561:1 28611:2 28756:1 28760:3
12 43:1 56:1 88:1 94:1 144:1 169:1 330:1 366:1 390:2 411:1 449:3 467:1 512:1 558:1 605:1 732:1 867:1 872:1 885:1 890:2 895:1 911:1 919:1 989:1 994:1 1026:1 1059:1 1094:1 1190:1 1196:1 1201:1 1233:1 1246:1 1278:1 1289:1 1299:1 1331:1 1341:1 1404:3 1463:1 1563:1 1566:1 1631:1 1664:1 1667:1 1701:1 1781:1 1793:1 1802:1 1816:2 1827:1 1842:1 1868:1 1876:1 1880:1 1897:1 1987:1 1989:1 2054:1 2127:1 2174:2 2185:2 2188:1 2199:1 2229:1 2245:1 2249:1 2252:1 2253:1 2254:1 2255:1 2259:1 2265:2 2266:1 2281:1 2286:1 2303:1 2334:1 2344:1 2359:1 2440:1 2475:1 2502:1 2509:1 2570:1 2573:1 2582:1 2704:3 2755:2 2766:1 2962:1 2963:1 2992:1 2997:1 3159:1 3196:1 3216:1 3237:2 3268:1 3283:1 3294:1 3442:1 3477:1 3510:2 3556:1 3660:1 3762:1 3777:1 3779:1 3805:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:1 3981:1 4012:1 4047:1 4058:1 4127:1 4173:1 4191:2 4211:1 4296:1 4386:1 4400:1 4401:1 4525:1 4556:1 4621:1 4681:1 4795:2 4906:3 4922:1 4923:1 4931:1 4943:1 4971:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:4 5294:6 5354:1 5386:1 5419:1 5447:1 5464:2 5495:1 5516:1 5524:1 5640:1 5659:1 5676:1 5832:1 5864:1 5909:1 5910:2 5934:1 5937:1 5947:1 5954:1 5973:1 6024:1 6077:1 6148:1 6155:1 6158:1 6227:1 6230:1 6247:1 6253:2 6254:2 6387:1 6403:2 6501:1 6537:2 6568:1 6616:1 6630:2 6654:3 6690:1 6727:1 6783:1 6876:1 6951:2 7024:1 7056:1 7062:1 7073:1 7089:1 7248:1 7276:1 7278:2 7290:1 7312:1 7325:1 7372:1 7390:1 7447:3 7448:2 7464:1 7469:1 7471:1 7517:9 7538:2 7543:1 7551:1 7595:1 7609:2 7634:2 7660:1 7741:1 7829:1 7962:1 7979:1 8023:1 8031:1 8067:1 8205:1 8213:1 8238:1 8348:1 8351:1 8366:1 8395:2 8403:1 8421:1 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8754:1 8769:1 8795:1 8869:1 8901:1 8923:3 8958:1 8966:1 9001:1 9037:1 9052:1 9055:2 9136:1 9167:1 9216:1 9232:1 9273:1 9286:1 9298:1 9316:2 9355:1 9411:1 9443:1 9449:1 9490:2 9646:2 9700:2 9706:1 9748:1 9813:1 9869:1 9886:1 9968:1 10022:1 10093:1 10101:2 10244:1 10298:1 10305:2 10404:1 10419:1 10428:3 10438:1 10462:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10793:1 10810:3 10850:1 10859:1 10870:1 10914:1 10933:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11152:1 11208:1 11231:1 11256:2 11307:1 11328:1 11371:1 11419:1 11444:1 11461:1 11500:1 11534:1 11598:1 11638:1 11676:1 11744:1 11755:1 11855:2 11896:2 11905:1 11926:1 11971:1 12010:2 12077:1 12214:1 12220:1 12250:1 12254:1 12330:1 12346:1 12447:2 12452:1 12455:1 12456:1 12476:1 12480:1 12490:1 12546:1 12552:1 12572:1 12668:1 12694:1 12756:1 12774:1 12787:1 12850:1 12851:1 12857:1 12871:1 12895:1 13021:1 13054:2 13131:1 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:2 13322:1 13342:1 13344:1 13347:1 13350:1 13368:1 13387:1 13462:1 13489:1 13564:1 13606:1 13619:1 13631:2 13648:1 13649:1 13791:1 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 14002:1 14068:1 14099:1 14144:1 14155:1 14169:1 14184:1 14233:1 14334:1 14354:2 14381:1 14401:1 14406:3 14436:1 14532:1 14633:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15234:2 15255:1 15259:1 15277:1 15278:1 15285:1 15300:1 15314:2 15326:1 15475:2 15481:1 15534:1 15597:1 15658:1 15659:1 15668:1 15685:1 15686:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:1 15916:1 15937:1 15941:1 16048:1 16071:1 16088:1 16117:1 16142:1 16166:1 16182:1 16208:1 16243:1 16245:1 16394:1 16429:1 16519:1 16554:1 16563:1 16595:1 16627:1 16686:1 16688:1 16817:1 16833:1 16856:1 16956:1 17014:1 17015:1 17021:1 17026:1 17044:1 17066:1 17152:1 17175:1 17199:1 17205:1 17247:1 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17370:1 17388:1 17390:1 17391:1 17419:1 17436:1 17639:1 17649:1 17669:1 17670:1 17785:1 17964:1 17985:1 17993:2 18002:1 18004:1 18049:1 18060:1 18087:1 18136:1 18141:1 18223:515 18245:1 18288:1 18405:1 18407:1 18536:1 18667:1 18759:1 18836:1 18838:1 19029:3 19072:1 19081:1 19114:1 19124:1 19225:2 19260:1 19319:1 19345:1 19372:1 19415:1 19419:1 19429:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19717:1 19722:1 19746:1 19758:1 19840:1 19856:1 19872:1 19884:1 19972:1 20039:1 20042:1 20068:1 20141:1 20175:1 20226:1 20236:1 20258:1 20306:1 20350:1 20384:1 20399:1 20409:1 20436:2 20438:2 20510:1 20604:2 20712:1 20892:1 20953:1 21055:1 21159:2 21168:1 21179:1 21185:2 21210:1 21251:1 21348:1 21361:1 21380:1 21383:1 21433:1 21547:1 21566:1 21588:2 21632:1 21682:1 21698:1 21774:1 21781:2 21792:1 21795:1 21815:1 21821:1 21917:1 21924:1 21959:1 21972:3 21985:1 22039:1 22040:1 22052:1 22065:1 22120:1 22132:1 22148:1 22157:1 22169:1 22265:2 22270:1 22275:1 22402:1 22458:1 22490:1 22566:2 22643:1 22791:1 22809:1 22818:1 22861:1 22870:1 22882:1 22919:1 22926:1 22950:1 22972:1 23016:1 23037:1 23046:2 23064:1 23081:1 23106:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23493:1 23502:1 23527:1 23595:1 23619:3 23646:1 23672:1 23736:1 23776:1 23841:1 23862:1 23870:1 23876:1 23904:3 23942:1 24022:2 24110:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:1 24355:1 24499:1 24574:1 24589:1 24600:1 24636:2 24652:1 24701:1 24854:2 24867:2 24888:1 24894:1 24895:1 24907:1 24911:1 24936:1 24961:1 24989:1 24992:1 25019:1 25094:1 25103:1 25148:1 25191:1 25305:2 25366:1 25371:1 25435:1 25467:2 25484:1 25497:1 25619:2 25673:1 25740:1 25750:1 25757:1 25777:1 25825:1 25851:1 25873:1 25910:2 25929:3 25992:1 26042:1 26066:1 26075:1 26168:1 26361:1 26397:1 26451:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26644:1 26658:1 26684:1 26734:2 26739:1 26759:1 26809:1 26819:1 26823:1 26826:1 26849:1 26876:1 26907:1 26923:1 26960:1 27016:1 27046:2 27089:1 27092:1 27105:1 27200:1 27211:1 27245:1 27308:1 27312:3 27353:1 27361:1 27393:1 27454:1 27456:1 27465:1 27469:3 27475:1 27491:1 27504:1 27505:1 27520:2 27546:1 27609:1 27631:3 27647:1 27668:4 27689:2 27710:1 27743:1 27746:1 27860:1 27892:1 27919:1 27939:1 27999:1 28010:1 28011:1 28024:1 28093:1 28132:1 28153:1 28172:1 28178:2 28184:1 28226:1 28297:1 28426:1 28543:2 28550:1 28559:1 28561:1 28611:2 28756:1 28760:3
12 43:1 56:1 88:1 94:1 144:1 169:1 330:1 366:1 390:2 411:2 449:3 467:1 512:1 558:1 605:1 732:1 867:1 872:1 885:1 890:2 895:1 911:1 919:1 989:1 994:1 1026:1 1059:1 1094:1 1190:1 1196:1 1201:1 1233:1 1246:1 1278:2 1289:1 1299:1 1331:1 1341:1 1404:4 1456:1 1460:1 1463:1 1533:1 1563:1 1566:1 1571:1 1631:1 1664:1 1667:1 1677:1 1701:1 1703:1 1726:1 1781:1 1793:1 1802:1 1816:2 1822:1 1827:1 1842:1 1868:1 1869:1 1876:1 1880:1 1897:1 1987:1 1989:2 1990:1 2033:1 2054:1 2127:1 2174:2 2185:2 2188:1 2199:1 2229:1 2241:1 2245:2 2249:2 2252:1 2253:1 2254:1 2255:1 2259:1 2265:2 2266:1 2281:1 2286:1 2303:1 2334:2 2344:1 2359:1 2372:1 2379:1 2440:1 2475:1 2502:1 2509:1 2570:1 2573:1 2582:1 2704:3 2755:2 2766:1 2869:1 2962:1 2963:1 2992:1 2997:1 3159:1 3196:1 3216:1 3237:2 3268:1 3283:1 3294:1 3354:1 3405:1 3442:1 3477:1 3510:2 3556:1 3660:1 3762:1 3777:1 3779:1 3805:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:1 3981:1 4012:1 4047:1 4058:1 4126:2 4127:1 4173:1 4191:2 4211:1 4296:1 4386:1 4400:1 4401:1 4525:1 4556:1 4621:1 4681:1 4795:4 4832:1 4906:3 4922:1 4923:1 4931:1 4943:1 4971:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:4 5294:7 5354:1 5386:1 5419:1 5447:1 5464:2 5495:1 5516:1 5524:1 5640:1 5659:1 5676:1 5832:1 5864:1 5909:1 5910:2 5934:1 5937:1 5947:1 5954:1 5973:1 6024:1 6077:1 6148:1 6155:1 6158:1 6227:1 6230:1 6247:1 6249:1 6253:2 6254:2 6387:1 6403:2 6501:1 6537:2 6568:1 6616:1 6630:2 6654:3 6690:1 6727:1 6783:1 6876:1 6951:2 7024:1 7047:1 7056:1 7062:1 7073:1 7089:1 7248:1 7276:2 7277:1 7278:2 7290:1 7312:1 7325:1 7372:1 7390:1 7415:1 7447:3 7448:2 7464:1 7469:1 7471:1 7517:11 7532:1 7538:2 7543:1 7551:1 7586:1 7595:1 7609:2 7634:2 7660:1 7723:1 7741:1 7794:1 7829:2 7962:1 7979:1 8023:1 8031:1 8067:1 8205:1 8213:1 8238:1 8348:1 8351:1 8366:1 8395:2 8403:1 8421:1 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8754:1 8769:1 8795:1 8869:1 8901:1 8923:3 8958:1 8966:1 9001:1 9037:1 9052:1 9055:2 9103:1 9136:1 9167:1 9216:1 9232:1 9273:1 9286:1 9298:1 9303:1 9316:2 9355:1 9411:1 9443:1 9449:1 9453:1 9490:2 9646:2 9700:2 9706:1 9748:1 9813:1 9869:1 9886:1 9968:1 10022:1 10059:1 10093:1 10101:2 10244:1 10298:1 10305:3 10404:1 10419:1 10428:3 10438:1 10462:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10793:1 10810:3 10850:1 10859:1 10870:1 10914:1 10915:1 10933:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11152:1 11208:1 11230:1 11231:1 11256:2 11307:1 11328:1 11371:1 11419:1 11425:1 11440:1 11444:1 11449:1 11461:1 11500:1 11534:1 11598:1 11638:1 11676:1 11744:1 11755:1 11855:2 11896:2 11905:1 11926:1 11971:1 12010:2 12077:1 12214:1 12220:1 12250:1 12254:1 12330:1 12346:1 12407:1 12447:2 12452:1 12455:1 12456:1 12476:1 12480:1 12490:1 12546:1 12552:1 12572:1 12668:1 12694:1 12726:1 12756:1 12774:1 12787:1 12850:1 12851:1 12857:1 12871:1 12895:1 13021:1 13054:2 13131:1 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:2 13322:1 13342:1 13344:1 13347:1 13350:1 13368:1 13387:1 13462:1 13489:1 13527:1 13564:1 13606:1 13619:1 13631:2 13648:1 13649:1 13791:1 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 14002:1 14068:1 14099:1 14144:1 14155:1 14164:1 14169:1 14184:1 14233:1 14334:1 14354:2 14381:1 14401:1 14406:3 14436:1 14532:1 14633:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15178:1 15234:2 15255:1 15259:1 15277:1 15278:1 15285:1 15300:1 15314:2 15326:1 15400:1 15475:2 15481:1 15534:1 15597:1 15658:1 15659:1 15668:1 15685:1 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:1 15916:1 15937:1 15941:1 16048:1 16071:1 16088:1 16117:1 16142:1 16166:1 16182:1 16208:1 16243:1 16245:1 16394:1 16429:1 16519:1 16554:1 16563:1 16595:1 16627:1 16686:1 16688:1 16817:1 16833:1 16856:1 16956:1 17014:1 17015:1 17021:1 17026:1 17044:1 17066:1 17152:1 17175:1 17199:1 17205:1 17247:1 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17370:1 17388:1 17390:1 17391:1 17419:1 17436:1 17573:1 17639:1 17649:1 17669:1 17670:1 17785:1 17964:1 17985:1 17993:2 18002:1 18004:1 18049:1 18060:1 18087:1 18136:1 18141:1 18223:563 18245:1 18288:1 18405:1 18407:1 18536:1 18667:1 18759:1 18836:1 18838:1 19029:3 19072:1 19081:1 19114:1 19124:1 19217:1 19225:2 19260:1 19319:1 19345:1 19372:1 19415:1 19419:1 19429:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19717:1 19722:1 19746:1 19758:1 19829:1 19840:1 19856:1 19872:1 19884:1 19972:1 20039:1 20042:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20306:1 20350:1 20384:1 20399:1 20409:1 20436:2 20438:2 20510:1 20604:2 20712:1 20803:1 20892:1 20953:1 20994:1 21055:1 21159:2 21168:1 21179:1 21185:2 21186:1 21210:1 21251:1 21348:1 21361:1 21380:1 21383:1 21433:1 21547:1 21566:1 21588:2 21632:1 21682:1 21698:1 21774:1 21781:2 21792:1 21795:1 21815:1 21821:1 21917:1 21924:1 21959:2 21972:3 21985:1 22039:1 22040:1 22052:1 22065:1 22120:1 22132:1 22140:1 22148:1 22157:1 22169:1 22265:2 22270:1 22275:1 22402:1 22458:1 22490:1 22566:3 22643:1 22791:1 22809:1 22818:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22950:1 22972:1 23016:1 23037:1 23046:2 23064:1 23081:1 23106:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23493:1 23502:1 23527:1 23595:1 23619:3 23646:1 23672:1 23736:1 23776:1 23841:1 23862:1 23870:1 23876:1 23904:3 23942:1 24022:2 24110:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:1 24355:1 24499:1 24574:1 24589:1 24600:1 24636:2 24652:1 24665:1 24701:1 24854:2 24867:2 24871:1 24888:1 24894:1 24895:1 24907:1 24911:1 24936:1 24961:1 24989:1 24992:1 25019:1 25065:1 25094:1 25103:1 25148:1 25191:1 25305:3 25366:1 25371:1 25435:1 25467:2 25472:1 25478:1 25484:1 25497:1 25619:2 25673:1 25740:1 25750:1 25757:1 25777:1 25825:1 25851:1 25873:1 25910:2 25929:3 25992:1 26042:1 26066:1 26075:1 26168:1 26361:1 26397:1 26451:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26644:1 26658:1 26664:1 26684:1 26734:2 26739:1 26759:1 26801:1 26809:1 26819:1 26823:1 26826:1 26849:1 26876:1 26907:1 26923:1 26960:1 27016:1 27046:2 27089:1 27092:1 27105:1 27200:1 27211:1 27245:1 27308:1 27312:3 27353:1 27361:1 27393:1 27454:1 27456:1 27465:1 27469:3 27475:1 27491:1 27504:1 27505:1 27520:2 27546:1 27609:1 27631:3 27647:1 27668:4 27689:2 27710:1 27743:1 27746:1 27860:1 27892:1 27919:1 27939:1 27999:1 28010:1 28011:1 28024:1 28093:1 28105:1 28132:1 28153:1 28172:1 28178:2 28184:1 28226:1 28297:1 28426:1 28543:2 28550:1 28559:1 28561:1 28611:2 28756:1 28760:3
12 43:1 56:1 88:1 94:1 144:1 169:1 195:1 205:1 330:1 366:1 390:2 411:2 449:3 467:1 512:1 558:1 605:1 732:1 867:1 872:1 885:1 890:2 895:1 911:1 919:1 989:1 994:1 1026:1 1059:1 1081:1 1094:1 1190:1 1196:1 1201:1 1233:1 1246:1 1278:2 1289:1 1299:1 1331:2 1341:1 1404:4 1456:1 1460:2 1463:1 1533:1 1563:1 1566:1 1571:1 1631:1 1664:1 1667:1 1677:1 1701:1 1703:1 1726:1 1781:1 1793:1 1802:1 1816:2 1822:1 1827:1 1842:1 1868:1 1869:1 1876:1 1880:1 1897:2 1987:1 1989:2 1990:1 2033:1 2054:1 2127:1 2174:2 2185:2 2188:1 2199:1 2229:1 2241:1 2245:2 2249:2 2252:1 2253:1 2254:1 2255:1 2259:1 2262:1 2265:2 2266:1 2281:1 2286:1 2303:1 2334:2 2344:1 2359:1 2372:1 2379:1 2440:1 2446:1 2475:1 2502:1 2509:2 2570:1 2573:1 2582:1 2704:3 2755:2 2766:1 2869:1 2962:1 2963:1 2992:1 2997:1 3037:1 3051:1 3084:1 3159:1 3196:1 3216:1 3237:2 3268:1 3283:1 3294:1 3354:1 3405:1 3442:1 3477:1 3483:1 3510:2 3556:1 3660:1 3762:1 3777:1 3779:1 3805:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4047:1 4058:1 4126:2 4127:1 4173:1 4191:2 4211:1 4296:1 4386:1 4400:1 4401:1 4525:1 4556:1 4621:1 4681:1 4781:1 4795:4 4832:1 4906:3 4922:1 4923:1 4931:1 4943:1 4971:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:5 5294:7 5354:1 5386:1 5419:1 5447:1 5464:2 5495:1 5516:1 5524:1 5640:1 5659:1 5676:1 5832:1 5864:1 5909:1 5910:2 5934:1 5937:1 5947:1 5954:1 5973:1 6024:1 6028:1 6077:1 6148:1 6155:1 6158:1 6227:1 6230:1 6247:1 6249:1 6253:2 6254:2 6258:1 6387:1 6403:2 6501:1 6537:2 6568:1 6616:1 6630:2 6654:3 6690:1 6727:1 6783:1 6876:1 6948:1 6951:2 7024:1 7047:1 7056:1 7062:1 7073:1 7089:1 7248:1 7276:2 7277:1 7278:2 7290:1 7312:1 7325:1 7372:1 7390:1 7415:1 7447:3 7448:2 7455:1 7464:1 7469:1 7471:1 7517:11 7532:1 7538:2 7543:1 7551:1 7586:1 7595:1 7609:2 7634:2 7660:1 7715:1 7723:1 7741:1 7794:1 7829:2 7962:1 7979:1 8023:1 8031:1 8067:1 8083:1 8205:1 8213:1 8238:1 8348:1 8351:1 8366:1 8395:2 8403:1 8421:1 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8754:1 8769:1 8795:1 8844:1 8869:1 8901:1 8923:3 8958:1 8966:1 8984:1 9001:1 9010:1 9037:1 9052:1 9055:2 9103:1 9136:1 9167:1 9216:1 9232:1 9273:1 9286:1 9298:1 9303:1 9316:2 9355:1 9375:1 9376:2 9389:1 9411:1 9443:1 9449:1 9453:1 9460:1 9490:3 9506:1 9646:2 9700:2 9706:1 9748:1 9813:1 9826:1 9869:1 9886:1 9968:1 10022:1 10059:1 10093:1 10101:2 10244:1 10298:1 10305:3 10320:1 10404:1 10419:1 10428:3 10438:1 10462:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10793:1 10810:3 10850:1 10859:1 10870:1 10914:1 10915:1 10933:1 10973:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:1 11208:1 11230:1 11231:1 11256:2 11307:1 11328:1 11341:1 11371:1 11419:1 11425:1 11440:1 11444:1 11449:1 11461:1 11500:1 11534:1 11553:1 11586:1 11598:1 11638:1 11658:1 11676:1 11744:1 11755:1 11855:2 11896:2 11905:1 11926:1 11971:1 12010:2 12077:1 12214:1 12220:1 12250:1 12254:1 12330:1 12346:1 12407:1 12447:2 12452:1 12455:1 12456:1 12476:1 12478:1 12480:1 12490:1 12546:1 12552:1 12572:1 12668:1 12694:1 12726:1 12756:1 12774:1 12787:1 12850:1 12851:1 12857:1 12871:1 12895:1 12940:1 13021:1 13054:2 13131:1 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:2 13322:1 13342:1 13344:1 13347:1 13350:1 13368:1 13387:1 13462:1 13489:1 13527:1 13564:1 13606:1 13619:1 13631:2 13648:1 13649:1 13791:1 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 14002:1 14068:1 14099:1 14144:1 14155:1 14164:1 14169:1 14184:1 14233:1 14334:1 14354:2 14381:1 14401:1 14406:3 14436:1 14532:1 14633:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14868:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15178:1 15234:2 15255:1 15259:1 15276:1 15277:1 15278:1 15285:1 15300:1 15314:2 15326:1 15400:1 15475:2 15481:1 15534:1 15597:1 15658:1 15659:1 15668:1 15674:1 15685:1 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:1 15916:1 15935:1 15937:1 15941:1 16048:1 16071:1 16088:1 16117:1 16142:1 16166:1 16182:1 16208:1 16243:1 16245:2 16394:1 16429:1 16495:1 16519:1 16554:1 16563:1 16595:1 16627:1 16686:1 16688:1 16739:1 16817:1 16833:1 16856:1 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17044:1 17046:1 17066:1 17152:1 17175:1 17199:1 17205:1 17247:1 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17370:1 17388:1 17390:1 17391:1 17419:1 17436:1 17573:1 17639:2 17649:1 17669:1 17670:1 17785:1 17964:1 17985:1 17993:3 18002:1 18004:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18218:1 18223:601 18245:1 18288:1 18405:1 18407:1 18536:1 18667:1 18759:1 18836:1 18838:1 19029:4 19072:1 19081:1 19114:1 19124:2 19217:1 19225:2 19260:1 19319:1 19345:1 19372:1 19415:1 19419:1 19429:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19680:1 19717:1 19722:1 19746:1 19758:1 19806:1 19823:1 19829:1 19840:1 19856:1 19872:1 19884:1 19972:1 20039:1 20042:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20306:1 20350:1 20384:1 20399:1 20409:1 20436:2 20438:2 20510:1 20604:2 20712:1 20803:1 20892:1 20953:1 20994:1 21055:1 21137:1 21159:2 21168:1 21179:1 21185:2 21186:1 21210:1 21251:1 21348:1 21361:1 21380:1 21383:1 21433:1 21547:1 21566:1 21588:2 21632:1 21682:1 21698:1 21774:1 21781:2 21792:1 21795:1 21815:1 21821:1 21917:1 21924:1 21959:2 21972:3 21985:1 22039:1 22040:1 22052:1 22065:1 22120:1 22132:1 22140:1 22148:1 22157:1 22169:1 22265:2 22270:1 22275:1 22402:1 22458:1 22490:1 22566:4 22589:1 22643:1 22737:1 22791:1 22809:1 22818:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22950:1 22972:1 22997:1 23016:1 23037:1 23046:2 23064:1 23081:1 23106:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23493:1 23502:1 23527:1 23595:1 23619:3 23646:1 23672:1 23684:1 23736:1 23776:1 23841:1 23862:1 23870:1 23876:1 23904:3 23942:1 24022:2 24110:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24355:1 24499:1 24574:1 24589:1 24600:1 24636:2 24639:1 24652:1 24665:1 24701:1 24704:1 24716:1 24854:2 24867:2 24871:1 24888:1 24894:1 24895:1 24907:1 24911:1 24936:1 24961:1 24989:1 24992:1 25019:1 25065:1 25094:1 25103:1 25148:1 25191:1 25305:4 25366:1 25371:1 25435:1 25467:2 25472:1 25476:1 25478:1 25484:1 25497:1 25619:3 25655:1 25673:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:2 25929:3 25992:1 26042:1 26066:1 26075:1 26140:1 26168:1 26191:1 26262:1 26293:1 26361:1 26397:1 26451:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:1 26664:1 26684:1 26734:2 26739:1 26754:1 26759:1 26801:1 26809:2 26811:1 26819:1 26823:1 26826:1 26840:1 26849:1 26876:1 26907:1 26914:1 26923:1 26960:1 27016:1 27046:2 27073:1 27089:1 27091:1 27092:1 27105:1 27200:1 27211:1 27245:1 27308:1 27312:3 27353:1 27361:1 27389:1 27393:1 27454:1 27456:1 27465:1 27469:3 27475:1 27491:1 27504:1 27505:2 27520:2 27546:1 27609:1 27631:3 27647:1 27668:4 27689:2 27710:1 27743:1 27746:1 27860:1 27892:1 27919:1 27939:1 27999:1 28010:1 28011:1 28024:1 28093:1 28105:1 28132:1 28153:1 28172:1 28178:2 28184:1 28226:1 28297:1 28426:1 28543:2 28550:1 28559:1 28561:1 28585:1 28611:2 28756:1 28760:3
12 43:1 56:1 88:1 94:1 144:1 169:1 195:1 205:2 330:1 366:1 390:2 411:2 448:1 449:3 467:1 512:1 558:1 605:1 732:1 867:2 872:1 885:1 890:2 895:1 911:1 919:1 989:1 994:1 1026:1 1059:1 1081:1 1094:1 1138:1 1190:1 1196:1 1201:1 1233:1 1246:1 1278:2 1289:1 1299:1 1331:2 1341:1 1404:4 1456:1 1460:2 1463:1 1513:1 1533:1 1563:2 1566:1 1571:1 1631:1 1664:1 1667:1 1677:1 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1802:1 1816:2 1822:1 1827:1 1842:1 1868:1 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2021:1 2033:1 2054:1 2065:1 2127:1 2174:2 2185:2 2188:1 2199:1 2229:1 2238:1 2240:1 2241:1 2245:2 2249:2 2252:1 2253:1 2254:1 2255:1 2259:1 2262:1 2265:2 2266:1 2281:1 2286:1 2303:1 2334:2 2344:2 2359:1 2372:1 2379:1 2440:1 2446:1 2475:1 2502:1 2509:2 2570:1 2573:1 2582:1 2704:3 2755:2 2766:1 2869:2 2962:1 2963:1 2992:1 2997:1 3037:1 3051:1 3084:1 3116:1 3159:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:1 3294:1 3354:1 3398:1 3403:1 3405:1 3442:1 3477:1 3483:1 3510:2 3556:1 3588:1 3635:1 3660:1 3762:1 3777:1 3779:2 3805:1 3849:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4047:1 4058:1 4126:2 4127:1 4173:1 4191:2 4211:1 4296:1 4386:1 4400:1 4401:1 4525:1 4556:1 4569:1 4621:1 4681:1 4781:1 4795:4 4832:1 4906:4 4922:1 4923:1 4931:1 4940:1 4943:1 4971:1 4983:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:5 5294:7 5354:1 5386:1 5419:1 5447:1 5464:2 5495:1 5516:1 5524:1 5592:1 5640:1 5659:1 5676:2 5832:1 5864:1 5909:1 5910:2 5934:1 5937:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6077:1 6148:1 6155:1 6158:1 6227:1 6230:1 6232:1 6247:1 6249:1 6253:2 6254:3 6258:1 6387:1 6403:2 6434:1 6501:1 6537:2 6568:1 6613:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6876:1 6948:1 6951:2 7024:1 7047:1 7056:1 7062:1 7073:1 7089:1 7248:1 7276:2 7277:1 7278:2 7290:1 7312:1 7325:1 7372:1 7390:1 7415:1 7447:3 7448:2 7455:1 7464:1 7469:1 7471:1 7517:13 7532:2 7538:2 7543:1 7551:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7715:1 7723:1 7741:1 7794:1 7829:2 7962:1 7979:1 8023:1 8031:1 8067:1 8083:1 8205:1 8213:1 8238:1 8279:1 8348:1 8351:1 8366:1 8391:1 8395:2 8403:1 8421:1 8437:1 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8754:1 8769:1 8795:1 8844:1 8869:1 8901:1 8923:3 8958:1 8966:1 8984:1 9001:1 9010:1 9037:1 9052:1 9055:2 9103:1 9136:1 9167:1 9172:1 9216:1 9232:1 9273:1 9286:1 9298:1 9303:1 9316:2 9355:1 9375:1 9376:2 9389:1 9411:1 9415:1 9443:1 9449:1 9453:1 9460:1 9490:3 9506:1 9646:2 9700:2 9703:1 9706:1 9748:1 9813:1 9826:1 9835:1 9869:1 9882:1 9886:1 9968:1 10022:1 10059:1 10093:1 10101:2 10204:1 10244:1 10298:1 10305:3 10320:1 10404:1 10419:1 10428:5 10438:1 10462:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10793:1 10810:3 10850:1 10856:1 10859:1 10870:1 10914:1 10915:1 10933:1 10973:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:1 11208:1 11230:1 11231:1 11243:1 11256:2 11307:1 11328:1 11341:1 11371:1 11419:1 11425:1 11440:1 11444:1 11449:1 11461:1 11500:1 11534:1 11553:1 11586:1 11598:1 11638:1 11658:1 11676:1 11744:1 11755:1 11855:2 11896:2 11905:2 11926:1 11971:1 12010:2 12077:1 12214:1 12220:1 12250:1 12254:1 12330:1 12346:1 12407:1 12447:2 12452:1 12455:1 12456:1 12476:1 12478:1 12480:1 12490:1 12526:1 12546:1 12552:1 12572:1 12668:1 12694:1 12726:1 12756:1 12774:1 12787:1 12850:1 12851:1 12857:1 12871:1 12895:1 12905:1 12940:1 13021:1 13054:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:2 13322:1 13342:1 13344:1 13347:1 13350:1 13368:1 13387:1 13462:1 13489:1 13527:1 13564:1 13581:2 13606:1 13619:1 13631:2 13648:1 13649:1 13654:1 13791:1 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 13992:1 14002:1 14068:1 14075:1 14099:1 14144:1 14155:1 14164:1 14169:1 14184:1 14233:1 14334:1 14351:1 14354:2 14381:1 14401:1 14406:3 14436:1 14532:1 14633:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14868:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15234:2 15255:1 15259:1 15276:1 15277:1 15278:1 15285:1 15300:1 15314:2 15326:1 15400:1 15426:1 15475:2 15481:1 15534:1 15597:1 15658:1 15659:1 15668:2 15674:1 15685:1 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:1 15861:1 15916:1 15935:1 15937:1 15941:1 16048:1 16071:1 16088:1 16117:1 16142:1 16166:1 16182:1 16208:1 16243:1 16245:2 16394:1 16429:1 16495:1 16519:1 16554:1 16563:1 16595:1 16627:1 16686:1 16688:1 16714:1 16739:1 16817:1 16833:1 16836:1 16856:1 16861:1 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17044:1 17046:1 17066:1 17152:1 17175:1 17199:1 17205:1 17247:1 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17370:1 17388:1 17390:1 17391:1 17419:1 17434:1 17436:1 17462:1 17570:1 17573:1 17639:2 17649:1 17669:1 17670:1 17785:1 17964:1 17985:1 17993:4 18002:1 18004:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:662 18226:1 18245:1 18288:1 18353:1 18405:1 18407:1 18536:1 18667:1 18712:1 18759:1 18836:1 18838:1 19029:4 19072:1 19081:1 19114:1 19124:2 19217:1 19225:2 19260:1 19319:1 19327:1 19345:2 19372:1 19415:1 19419:1 19429:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19680:1 19687:1 19717:1 19722:1 19746:1 19758:1 19806:1 19823:1 19829:1 19840:1 19856:1 19872:1 19884:1 19972:1 20039:1 20042:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20306:1 20310:1 20350:1 20384:1 20399:1 20409:1 20436:2 20438:2 20510:1 20604:2 20712:1 20803:1 20892:1 20899:1 20929:1 20953:1 20973:1 20994:1 21055:1 21137:1 21159:2 21168:1 21179:1 21185:3 21186:1 21210:1 21251:1 21348:2 21361:1 21380:1 21383:1 21396:1 21399:1 21433:1 21547:1 21565:1 21566:1 21588:2 21632:1 21682:1 21698:1 21774:1 21781:2 21792:1 21795:1 21815:1 21821:1 21872:1 21917:1 21924:1 21959:2 21972:3 21985:1 22039:1 22040:1 22052:1 22065:1 22120:1 22132:1 22140:1 22148:1 22157:1 22165:1 22169:1 22265:2 22270:1 22275:1 22324:1 22402:1 22458:1 22490:2 22566:4 22589:1 22643:1 22737:1 22777:1 22791:1 22809:1 22818:1 22847:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22950:1 22972:1 22997:2 23016:1 23031:1 23037:1 23046:2 23064:1 23081:1 23106:1 23129:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23594:1 23595:1 23619:3 23646:1 23672:1 23684:1 23725:1 23736:1 23776:1 23841:1 23862:1 23870:1 23876:1 23904:3 23942:1 24002:1 24022:2 24110:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24355:1 24499:1 24574:1 24589:1 24600:1 24636:2 24639:1 24652:1 24665:1 24701:1 24704:2 24716:1 24759:1 24854:2 24867:2 24871:1 24888:1 24894:1 24895:1 24907:1 24911:1 24928:1 24936:1 24961:1 24989:1 24992:1 25019:1 25065:1 25094:1 25103:1 25148:1 25191:1 25305:4 25366:1 25371:1 25406:1 25435:1 25467:2 25472:1 25476:1 25478:1 25484:1 25497:1 25550:1 25619:4 25655:1 25673:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:2 25929:3 25992:1 26042:1 26066:1 26075:1 26140:1 26168:1 26191:1 26262:1 26290:2 26293:1 26349:1 26361:1 26397:1 26451:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:1 26664:1 26684:1 26734:2 26739:1 26754:1 26759:1 26801:1 26809:2 26811:1 26819:1 26823:1 26826:1 26840:1 26849:1 26876:1 26907:1 26914:1 26922:1 26923:1 26960:1 27016:1 27046:2 27073:1 27089:1 27091:1 27092:1 27105:1 27200:1 27211:1 27245:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27450:1 27454:1 27456:1 27465:1 27469:3 27475:1 27491:1 27504:1 27505:2 27520:2 27546:1 27609:1 27631:3 27647:1 27668:4 27689:2 27710:1 27743:1 27746:1 27774:1 27860:1 27892:1 27919:1 27939:1 27999:1 28010:1 28011:1 28024:1 28093:1 28105:1 28132:1 28153:1 28172:1 28178:2 28184:1 28226:1 28280:1 28297:1 28413:1 28426:1 28543:2 28550:1 28559:1 28561:1 28585:1 28593:1 28611:2 28756:1 28760:4 28783:1
12 43:1 56:1 71:1 88:1 94:1 144:1 169:1 195:1 205:2 330:1 366:1 390:2 397:1 411:2 448:1 449:3 467:1 512:1 558:1 605:1 635:1 732:1 791:1 867:2 872:1 885:1 890:2 895:1 911:1 919:1 957:1 989:1 994:1 1026:1 1059:1 1081:1 1094:1 1138:1 1190:1 1196:1 1201:2 1233:1 1246:1 1278:2 1289:1 1299:1 1331:2 1341:1 1404:4 1450:1 1456:1 1460:3 1463:1 1513:1 1533:1 1563:2 1566:1 1571:1 1631:1 1664:1 1667:1 1677:4 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1802:1 1816:2 1822:1 1827:1 1842:1 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2033:1 2054:1 2065:1 2127:1 2174:2 2185:2 2188:1 2199:1 2229:1 2230:1 2238:1 2240:1 2241:1 2245:3 2249:2 2252:1 2253:1 2254:1 2255:1 2259:1 2262:1 2265:3 2266:1 2281:1 2286:1 2303:1 2334:2 2344:2 2359:1 2372:1 2379:1 2440:1 2446:1 2475:1 2502:1 2509:2 2570:1 2573:1 2582:1 2704:3 2755:2 2766:1 2775:1 2869:3 2949:1 2955:1 2962:1 2963:1 2992:1 2997:1 3037:1 3051:1 3084:1 3116:1 3159:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:1 3294:1 3354:1 3398:1 3403:1 3405:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3583:1 3588:1 3635:1 3641:1 3660:1 3762:1 3777:1 3779:2 3805:1 3849:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4047:1 4058:1 4126:5 4127:1 4132:1 4173:1 4191:2 4211:1 4296:1 4308:1 4354:1 4386:1 4400:1 4401:1 4418:1 4470:1 4525:1 4556:1 4569:1 4621:1 4681:1 4781:1 4795:4 4832:1 4906:4 4922:2 4923:1 4931:1 4940:1 4943:1 4971:1 4983:1 5141:2 5179:1 5210:1 5223:1 5233:2 5261:5 5294:7 5354:1 5386:1 5419:1 5447:1 5464:2 5495:1 5516:1 5524:1 5592:1 5640:1 5659:1 5676:2 5832:1 5864:1 5909:1 5910:2 5915:1 5934:1 5937:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6077:1 6148:1 6155:1 6158:1 6163:1 6227:1 6230:1 6232:1 6247:1 6249:1 6253:2 6254:3 6258:1 6387:1 6403:2 6434:1 6501:1 6537:2 6549:1 6568:1 6612:1 6613:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6876:1 6948:1 6951:2 7024:1 7047:1 7056:1 7062:1 7073:1 7089:1 7248:1 7276:2 7277:1 7278:2 7290:1 7312:1 7325:1 7372:2 7390:1 7415:1 7416:1 7447:4 7448:3 7455:1 7464:1 7469:1 7471:1 7517:15 7532:3 7538:2 7543:1 7551:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7715:1 7723:1 7741:1 7794:1 7829:2 7962:1 7979:3 8019:1 8023:1 8031:1 8067:1 8083:1 8205:1 8213:1 8238:1 8279:1 8348:1 8349:1 8351:1 8365:1 8366:1 8391:1 8395:2 8403:1 8421:1 8437:2 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8754:1 8769:1 8795:1 8844:1 8869:1 8901:1 8923:3 8958:1 8966:1 8984:1 9001:1 9010:1 9037:1 9052:1 9055:2 9103:1 9136:1 9167:1 9172:1 9216:1 9232:2 9273:1 9286:1 9298:1 9303:1 9316:2 9355:1 9375:1 9376:2 9389:1 9411:1 9415:1 9443:1 9449:1 9453:1 9460:1 9490:3 9506:1 9646:2 9700:2 9703:1 9706:1 9748:1 9813:1 9826:1 9835:1 9869:1 9882:1 9886:1 9968:1 10022:1 10059:1 10093:1 10101:2 10204:1 10244:2 10268:1 10298:1 10305:3 10320:1 10404:1 10419:1 10428:5 10438:1 10462:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10933:1 10973:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:1 11208:1 11230:1 11231:1 11243:1 11256:2 11307:1 11328:1 11341:1 11371:1 11419:1 11425:1 11440:1 11444:1 11449:1 11461:1 11500:1 11534:1 11553:1 11586:1 11598:1 11638:1 11658:1 11676:1 11744:1 11755:1 11855:2 11896:2 11905:2 11926:1 11971:1 11987:1 12010:2 12077:1 12214:1 12220:1 12250:1 12254:1 12330:1 12346:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:1 12490:1 12526:1 12546:1 12552:1 12572:1 12668:1 12694:1 12726:1 12756:1 12774:1 12787:1 12850:2 12851:2 12857:1 12871:1 12895:1 12905:1 12940:1 13021:1 13025:1 13054:2 13082:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:2 13322:1 13342:1 13344:1 13347:1 13350:2 13368:1 13387:1 13462:1 13489:1 13527:1 13564:1 13581:2 13606:1 13619:2 13631:2 13648:1 13649:1 13654:1 13686:1 13752:1 13791:1 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 13992:1 14002:1 14068:1 14075:1 14099:1 14144:1 14155:1 14164:1 14169:1 14172:1 14184:1 14233:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14401:1 14406:3 14436:1 14532:1 14533:1 14633:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14868:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15234:2 15255:1 15259:2 15276:1 15277:1 15278:1 15285:1 15300:1 15314:2 15326:1 15400:1 15426:2 15475:2 15481:1 15534:1 15568:1 15597:1 15658:1 15659:1 15668:2 15674:1 15685:1 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:2 15843:1 15861:1 15900:1 15916:1 15935:1 15937:1 15941:1 16048:1 16071:1 16088:1 16117:1 16142:1 16166:2 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16495:1 16519:1 16554:1 16563:1 16595:1 16627:1 16686:1 16688:1 16714:1 16739:1 16817:1 16833:1 16836:1 16856:1 16861:1 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17044:1 17046:1 17066:1 17152:1 17164:1 17175:1 17199:1 17205:1 17221:1 17247:1 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17370:1 17388:2 17390:1 17391:1 17419:1 17434:1 17436:1 17462:1 17570:1 17573:1 17639:2 17649:1 17669:1 17670:1 17700:1 17785:1 17964:1 17985:1 17993:4 18002:1 18004:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:724 18226:1 18245:1 18288:1 18353:1 18405:1 18407:1 18536:1 18667:1 18694:1 18712:1 18759:1 18836:1 18838:1 19029:4 19072:1 19081:1 19114:1 19124:2 19217:1 19225:2 19260:1 19319:1 19327:1 19345:2 19359:1 19372:1 19415:1 19419:1 19429:1 19502:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19680:2 19687:1 19717:1 19722:1 19746:1 19758:1 19806:1 19823:1 19829:1 19840:1 19856:1 19872:1 19884:1 19972:1 20039:1 20042:1 20047:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:1 20384:1 20399:1 20409:1 20436:2 20438:2 20510:1 20556:1 20604:2 20706:1 20712:1 20803:1 20892:1 20899:1 20901:1 20929:1 20953:1 20973:1 20994:1 21055:1 21097:1 21137:1 21159:2 21168:1 21179:1 21185:3 21186:1 21210:1 21251:1 21348:2 21361:1 21380:2 21383:1 21395:1 21396:1 21399:1 21433:1 21547:1 21565:1 21566:1 21588:2 21632:1 21682:1 21698:1 21774:1 21781:2 21792:1 21795:1 21815:1 21821:1 21847:1 21872:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:1 22039:1 22040:1 22052:1 22065:1 22120:1 22132:1 22140:1 22148:1 22157:1 22165:1 22169:1 22265:2 22270:1 22275:1 22324:1 22402:1 22420:1 22458:1 22490:2 22566:4 22589:1 22643:1 22737:1 22777:1 22791:1 22796:1 22809:1 22818:1 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22950:1 22972:1 22997:2 23016:1 23031:1 23037:1 23046:2 23064:1 23081:1 23098:1 23106:1 23116:1 23129:1 23157:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23594:1 23595:1 23619:3 23646:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:1 23841:1 23862:1 23870:1 23876:1 23904:3 23942:1 24002:1 24009:1 24022:2 24110:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24355:1 24499:1 24574:1 24589:1 24600:1 24636:2 24639:1 24652:1 24665:1 24701:1 24704:2 24716:1 24737:1 24759:1 24854:2 24867:2 24871:1 24888:1 24892:1 24894:1 24895:1 24907:1 24911:1 24928:1 24936:1 24961:1 24989:1 24992:1 25019:1 25065:1 25094:1 25103:1 25148:1 25156:1 25191:1 25305:4 25308:1 25366:1 25371:1 25406:1 25435:1 25467:2 25472:1 25476:1 25478:1 25484:1 25497:1 25550:1 25619:4 25655:1 25673:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:2 25929:3 25992:1 26042:1 26066:1 26075:1 26140:1 26168:1 26191:1 26262:1 26290:2 26293:1 26349:1 26361:1 26383:1 26397:1 26451:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:1 26664:1 26684:1 26734:2 26739:1 26754:1 26759:1 26801:1 26809:2 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26876:1 26907:1 26914:1 26922:1 26923:2 26960:1 26998:1 27016:1 27046:2 27073:1 27089:1 27091:1 27092:1 27105:1 27195:1 27200:1 27211:1 27245:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27450:1 27454:1 27456:1 27465:1 27469:5 27475:1 27491:1 27504:1 27505:2 27520:2 27546:1 27609:1 27624:1 27631:3 27647:1 27668:5 27689:2 27710:1 27743:1 27746:1 27774:1 27860:1 27892:1 27919:1 27939:1 27999:1 28010:1 28011:1 28024:1 28088:2 28093:1 28105:1 28132:1 28153:1 28172:1 28178:2 28184:1 28226:2 28239:1 28280:1 28297:1 28413:1 28426:1 28492:1 28543:2 28550:1 28559:1 28561:1 28585:1 28593:1 28611:2 28756:1 28760:4 28783:1
12 43:1 56:1 71:2 88:1 94:1 144:1 169:1 195:1 205:2 208:1 330:1 366:1 390:2 397:1 411:2 420:1 448:1 449:3 467:1 512:1 558:1 605:1 635:1 695:1 732:1 791:1 867:2 872:1 885:1 890:2 895:1 911:1 919:1 957:1 989:1 994:1 1026:1 1027:1 1059:1 1081:1 1094:1 1138:1 1190:1 1196:1 1201:2 1233:1 1246:1 1278:2 1289:1 1299:1 1319:1 1331:2 1341:1 1404:4 1450:1 1456:1 1460:3 1463:1 1513:1 1533:1 1542:1 1563:2 1566:1 1571:1 1631:1 1664:1 1667:1 1677:4 1695:1 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1802:1 1816:2 1822:1 1827:1 1842:1 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2033:1 2054:1 2065:1 2127:1 2174:2 2185:2 2188:1 2199:1 2229:1 2230:1 2238:1 2240:1 2241:1 2245:3 2249:2 2252:1 2253:1 2254:1 2255:1 2259:1 2262:1 2265:3 2266:1 2281:2 2286:1 2303:1 2334:2 2344:2 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2475:1 2502:1 2509:3 2563:1 2570:1 2573:1 2582:1 2704:3 2755:2 2766:1 2775:1 2869:3 2878:1 2949:1 2955:1 2962:1 2963:1 2992:1 2997:1 3037:1 3051:1 3084:1 3085:1 3116:1 3159:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:1 3294:1 3354:1 3398:1 3403:1 3405:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3583:1 3588:1 3635:1 3641:1 3660:1 3762:1 3777:1 3779:2 3805:1 3849:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4039:1 4047:1 4058:1 4126:5 4127:1 4132:1 4173:1 4191:2 4211:1 4296:1 4308:1 4354:1 4386:1 4400:1 4401:1 4418:1 4470:1 4525:1 4556:1 4569:1 4621:2 4681:1 4781:1 4795:4 4832:1 4906:4 4922:2 4923:1 4926:1 4931:1 4940:1 4943:1 4971:1 4983:1 5141:2 5179:1 5201:1 5210:1 5223:1 5233:2 5261:5 5294:7 5354:1 5386:1 5419:1 5447:1 5464:2 5495:1 5516:1 5524:1 5592:1 5630:1 5640:1 5659:1 5676:2 5832:1 5864:1 5909:1 5910:2 5915:1 5934:1 5937:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6077:1 6148:1 6155:1 6158:1 6163:1 6227:1 6230:1 6232:1 6239:1 6247:1 6249:1 6253:2 6254:5 6258:1 6387:1 6403:2 6434:1 6501:1 6537:2 6549:1 6568:1 6612:1 6613:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6876:1 6948:1 6951:2 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:1 7089:1 7248:2 7276:2 7277:1 7278:2 7290:1 7312:1 7325:1 7372:2 7390:1 7415:1 7416:1 7447:5 7448:4 7455:1 7464:1 7469:1 7471:1 7504:1 7517:15 7532:3 7538:2 7543:1 7551:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7715:1 7723:1 7741:1 7794:1 7829:2 7962:1 7979:3 8019:1 8023:1 8031:1 8067:1 8083:1 8205:1 8213:1 8238:1 8279:1 8348:1 8349:1 8351:1 8365:1 8366:1 8391:1 8395:2 8403:1 8421:1 8437:2 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8754:1 8769:1 8795:1 8822:1 8844:1 8869:1 8901:1 8923:3 8958:1 8966:1 8984:1 9001:1 9010:1 9037:1 9052:1 9055:2 9103:1 9136:1 9167:1 9172:1 9216:1 9232:2 9273:1 9286:1 9298:1 9303:1 9316:2 9355:1 9375:1 9376:2 9389:2 9411:1 9415:1 9443:1 9449:1 9453:1 9460:1 9490:3 9506:2 9616:1 9646:2 9699:1 9700:3 9703:1 9706:1 9748:1 9813:1 9826:1 9835:1 9869:1 9882:1 9886:1 9968:1 10017:1 10022:1 10059:1 10093:1 10101:2 10204:1 10244:2 10268:1 10298:1 10305:3 10320:1 10404:1 10419:1 10428:5 10438:1 10462:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10933:1 10973:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:1 11208:1 11230:1 11231:1 11243:1 11256:2 11307:1 11328:1 11341:1 11371:1 11419:1 11425:1 11440:1 11444:1 11449:1 11461:1 11500:1 11501:1 11534:1 11553:1 11586:1 11598:1 11638:1 11658:1 11676:1 11715:1 11744:1 11755:1 11855:2 11896:2 11905:2 11926:1 11941:1 11971:1 11987:1 12010:2 12077:1 12195:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:1 12346:1 12382:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:1 12490:1 12526:1 12543:1 12546:1 12552:1 12572:1 12622:1 12668:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12850:2 12851:2 12857:2 12871:1 12895:1 12905:1 12940:1 13012:1 13021:1 13025:1 13054:2 13082:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:2 13322:1 13342:1 13344:1 13347:1 13350:2 13368:1 13387:1 13462:1 13489:1 13527:1 13564:1 13581:2 13606:1 13619:2 13631:2 13648:2 13649:1 13654:1 13686:1 13752:1 13791:1 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14068:1 14075:1 14099:1 14144:1 14155:1 14164:1 14169:1 14172:1 14184:1 14233:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14401:1 14406:3 14436:1 14532:1 14533:1 14633:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14868:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15234:2 15255:1 15259:2 15276:1 15277:1 15278:1 15285:1 15300:1 15314:2 15326:1 15400:1 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:1 15597:1 15658:1 15659:1 15668:2 15674:1 15685:2 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:2 15843:1 15861:1 15900:1 15916:1 15935:1 15937:1 15941:1 16048:1 16071:1 16088:1 16117:1 16142:1 16161:1 16166:3 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16495:1 16519:1 16554:1 16563:1 16595:1 16627:1 16655:1 16686:1 16688:1 16714:1 16739:1 16817:1 16833:1 16836:1 16856:1 16861:1 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17044:1 17046:1 17066:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17247:1 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17370:1 17388:2 17390:1 17391:1 17419:1 17434:1 17436:1 17462:1 17483:1 17570:1 17573:1 17639:2 17649:1 17669:1 17670:1 17695:1 17700:1 17785:1 17964:1 17985:1 17993:4 18002:1 18004:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:770 18226:1 18245:1 18288:1 18353:1 18405:1 18407:1 18536:1 18667:1 18694:1 18712:1 18759:1 18836:1 18838:1 19029:4 19072:1 19081:1 19114:1 19124:2 19217:1 19225:2 19260:1 19319:1 19327:1 19345:2 19359:1 19372:1 19411:1 19415:1 19419:1 19429:1 19502:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19680:2 19687:1 19717:1 19722:1 19746:1 19758:1 19806:1 19823:1 19829:1 19840:1 19856:1 19872:1 19884:1 19965:1 19972:1 20024:1 20039:1 20042:1 20047:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20277:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:1 20384:1 20399:1 20409:1 20436:2 20438:2 20448:1 20510:1 20512:1 20556:1 20582:1 20604:2 20706:1 20712:1 20752:1 20803:1 20863:1 20892:1 20899:1 20901:1 20929:1 20953:1 20973:1 20994:1 21009:1 21055:1 21097:1 21137:1 21159:2 21168:1 21179:1 21185:5 21186:1 21210:1 21251:1 21348:2 21361:1 21380:2 21383:1 21395:1 21396:1 21399:1 21433:1 21547:1 21565:1 21566:1 21588:2 21632:1 21682:1 21698:1 21774:1 21781:2 21792:2 21795:1 21810:1 21815:1 21821:1 21847:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 22039:1 22040:1 22052:1 22065:1 22120:1 22132:1 22140:1 22148:1 22157:1 22165:1 22169:1 22265:2 22270:1 22275:1 22324:1 22402:1 22420:1 22458:1 22490:2 22566:4 22589:1 22643:1 22737:1 22777:1 22791:1 22796:1 22809:1 22818:1 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22950:1 22972:1 22996:1 22997:2 23016:1 23031:1 23037:1 23046:2 23064:1 23081:1 23098:1 23106:1 23116:1 23129:1 23157:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23594:1 23595:1 23619:3 23646:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:1 23787:1 23841:1 23862:1 23870:1 23876:1 23904:5 23942:1 23994:1 24002:1 24009:1 24022:2 24110:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24355:1 24499:1 24574:1 24589:1 24600:1 24636:2 24639:1 24652:1 24665:1 24701:1 24704:2 24716:1 24737:1 24759:1 24851:1 24854:2 24867:2 24871:1 24888:1 24892:1 24894:1 24895:1 24907:1 24911:1 24928:1 24936:1 24961:1 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25148:1 25156:1 25191:1 25303:1 25305:4 25308:1 25366:1 25371:1 25406:1 25435:1 25467:2 25472:1 25476:1 25478:1 25484:1 25497:2 25550:1 25619:4 25655:1 25660:1 25673:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:2 25929:3 25992:1 26042:1 26066:1 26075:1 26140:1 26168:1 26191:1 26262:1 26290:2 26293:1 26349:1 26358:1 26361:1 26383:1 26397:1 26419:1 26451:1 26474:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:1 26664:1 26684:1 26734:2 26739:1 26754:1 26759:1 26801:1 26809:2 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26876:1 26907:1 26914:1 26922:1 26923:2 26960:1 26998:1 27016:1 27046:2 27073:1 27089:1 27091:1 27092:1 27105:1 27195:1 27200:1 27211:1 27245:1 27295:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27450:1 27454:1 27456:1 27465:1 27469:5 27475:1 27491:1 27504:1 27505:2 27520:2 27546:1 27609:1 27624:1 27631:4 27647:1 27668:6 27689:2 27710:1 27743:1 27746:1 27774:1 27860:1 27892:1 27919:1 27939:1 27999:1 28010:1 28011:1 28017:1 28024:1 28058:1 28088:2 28093:1 28105:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28226:2 28239:1 28280:1 28297:1 28413:1 28418:1 28426:1 28492:1 28543:2 28550:1 28559:1 28561:1 28585:1 28593:1 28611:2 28756:1 28760:4 28783:1
12 43:1 56:1 71:2 88:1 94:1 144:1 169:1 195:1 205:2 208:1 311:1 330:1 366:1 390:2 397:1 411:2 420:1 448:1 449:3 467:2 512:1 558:1 605:1 635:1 695:1 732:1 791:1 867:2 872:1 885:1 890:3 895:1 911:1 919:1 947:1 957:1 989:1 994:1 1026:1 1027:1 1059:1 1081:1 1094:1 1138:1 1190:1 1196:1 1201:2 1228:1 1233:1 1246:1 1278:2 1289:1 1299:1 1319:1 1331:2 1341:1 1404:4 1450:1 1452:1 1456:1 1460:3 1463:1 1513:1 1533:1 1542:1 1563:2 1566:1 1571:1 1631:1 1664:1 1667:1 1677:4 1695:1 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1802:1 1816:2 1822:1 1827:1 1842:1 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2127:1 2174:2 2185:2 2188:1 2199:1 2229:1 2230:1 2238:1 2240:2 2241:1 2245:3 2249:2 2252:1 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:3 2266:1 2281:2 2286:1 2303:1 2334:3 2344:2 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2475:1 2502:1 2509:3 2527:1 2563:1 2570:1 2573:1 2582:1 2704:3 2710:1 2729:1 2755:2 2766:1 2775:1 2819:1 2869:3 2878:1 2949:1 2955:1 2962:1 2963:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3116:1 3159:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:1 3294:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3567:1 3583:1 3588:1 3635:1 3641:1 3660:1 3731:1 3762:1 3777:1 3779:2 3805:1 3849:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4039:1 4047:1 4058:1 4126:5 4127:1 4132:2 4173:1 4191:2 4211:1 4268:1 4296:1 4308:1 4354:1 4386:1 4400:1 4401:1 4418:1 4470:1 4525:1 4556:1 4569:1 4621:2 4681:1 4781:1 4795:4 4832:1 4906:4 4922:3 4923:2 4926:1 4931:1 4940:2 4943:1 4971:1 4983:1 5141:2 5179:1 5201:1 5210:1 5223:1 5233:2 5261:5 5294:7 5354:1 5386:1 5419:1 5447:1 5464:2 5495:1 5516:1 5524:1 5592:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:2 5915:1 5934:1 5937:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6077:1 6148:1 6155:1 6158:1 6163:1 6227:1 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:2 6254:5 6258:1 6387:1 6398:1 6403:2 6434:1 6501:1 6537:2 6549:1 6553:1 6568:1 6612:1 6613:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6876:1 6948:1 6951:2 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:1 7089:1 7238:1 7248:2 7276:2 7277:1 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7415:1 7416:1 7447:7 7448:5 7455:1 7464:1 7469:1 7471:1 7504:1 7517:16 7532:3 7538:2 7543:1 7551:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7715:1 7723:1 7741:1 7794:1 7829:2 7962:1 7979:3 8019:1 8023:1 8031:1 8067:1 8083:1 8205:1 8213:1 8238:1 8279:1 8348:1 8349:1 8351:1 8365:1 8366:1 8384:1 8391:1 8395:2 8403:1 8421:1 8437:2 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8736:1 8754:1 8757:1 8769:1 8795:1 8822:1 8844:2 8869:1 8901:1 8923:3 8958:1 8966:1 8984:1 9001:1 9010:1 9012:1 9037:1 9052:1 9055:2 9103:1 9136:1 9167:1 9172:1 9216:1 9232:3 9273:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:1 9375:1 9376:2 9389:2 9411:1 9415:1 9443:1 9449:1 9453:1 9460:1 9490:3 9506:2 9616:1 9646:2 9699:1 9700:3 9703:1 9706:1 9748:1 9813:1 9826:1 9835:1 9869:1 9882:1 9886:1 9968:1 10017:1 10022:1 10059:1 10070:1 10093:1 10101:2 10204:1 10244:2 10268:1 10298:1 10305:3 10320:1 10404:1 10419:1 10428:5 10438:1 10462:1 10496:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10933:1 10973:1 10983:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:1 11208:1 11224:1 11230:1 11231:1 11243:1 11256:2 11307:1 11328:1 11341:1 11371:1 11419:1 11425:1 11440:1 11444:1 11449:1 11461:1 11500:1 11501:1 11534:1 11553:1 11586:1 11598:1 11599:1 11638:1 11658:1 11676:1 11715:1 11744:1 11755:1 11855:2 11896:2 11905:2 11926:1 11941:1 11971:1 11987:1 12010:2 12077:1 12195:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:1 12346:1 12382:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12526:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12850:2 12851:2 12857:2 12871:1 12877:1 12895:1 12905:1 12940:1 13012:1 13021:1 13025:1 13054:2 13082:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:2 13322:1 13342:1 13344:1 13347:1 13350:3 13368:1 13387:1 13462:1 13489:1 13491:1 13527:1 13564:1 13581:2 13606:1 13619:2 13623:1 13631:2 13648:2 13649:1 13654:1 13686:1 13752:1 13791:1 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14068:1 14075:1 14099:1 14135:1 14144:1 14155:1 14164:1 14169:1 14172:1 14184:1 14233:1 14296:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14401:1 14406:3 14436:1 14528:1 14532:2 14533:1 14633:1 14637:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14868:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14958:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15234:2 15255:1 15259:3 15276:1 15277:1 15278:1 15285:2 15300:1 15314:2 15326:1 15349:1 15400:1 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:1 15658:1 15659:1 15668:2 15674:1 15685:2 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:2 15843:1 15861:1 15900:1 15916:1 15935:1 15937:1 15941:1 16048:1 16071:1 16088:1 16117:1 16142:1 16161:1 16166:3 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16482:1 16495:1 16498:1 16519:1 16554:1 16563:1 16595:1 16627:1 16655:1 16686:1 16688:1 16714:1 16739:1 16817:1 16833:1 16836:1 16856:1 16861:2 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17044:1 17046:1 17066:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17247:2 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17370:1 17388:2 17390:1 17391:1 17419:1 17434:1 17436:1 17462:1 17483:1 17570:1 17573:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17785:1 17822:1 17964:1 17985:1 17993:4 18002:1 18004:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:816 18226:1 18245:1 18288:1 18353:1 18405:1 18407:1 18536:1 18667:1 18694:1 18712:1 18759:1 18836:1 18838:1 18918:1 19029:4 19072:1 19081:1 19114:1 19124:2 19127:1 19217:1 19225:2 19260:1 19272:1 19319:1 19327:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:2 19419:1 19429:1 19502:1 19527:1 19531:1 19533:1 19601:2 19645:1 19670:1 19680:2 19687:1 19717:1 19722:1 19746:1 19758:1 19806:1 19823:1 19829:1 19840:1 19856:1 19872:1 19884:1 19965:1 19972:1 20024:1 20039:1 20042:1 20047:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20277:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:1 20384:1 20399:1 20409:1 20436:2 20438:2 20448:1 20510:1 20512:1 20556:1 20582:1 20604:2 20706:1 20712:1 20752:1 20803:1 20858:1 20863:1 20892:1 20899:1 20901:1 20929:1 20953:1 20973:1 20994:1 21009:1 21055:1 21097:1 21137:1 21159:2 21168:1 21179:1 21185:5 21186:1 21210:1 21238:1 21251:1 21348:2 21352:1 21361:1 21380:3 21383:1 21395:1 21396:1 21399:1 21433:1 21498:1 21547:1 21565:1 21566:1 21588:2 21616:1 21632:1 21682:1 21698:1 21774:1 21781:2 21792:2 21795:1 21810:1 21815:1 21821:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 22039:1 22040:1 22052:1 22065:1 22089:1 22120:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22265:2 22270:1 22275:1 22324:1 22402:1 22420:1 22458:1 22490:2 22566:4 22589:1 22643:1 22737:1 22777:1 22791:1 22796:1 22809:1 22818:1 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22950:1 22972:1 22996:1 22997:2 23016:1 23031:1 23037:1 23046:2 23064:1 23081:1 23098:1 23106:1 23116:1 23129:1 23157:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23594:1 23595:1 23619:3 23646:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:1 23787:1 23841:1 23862:1 23870:1 23876:1 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24110:1 24119:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24355:1 24408:1 24499:1 24574:1 24589:1 24600:1 24603:1 24636:2 24639:1 24652:1 24665:1 24673:1 24701:1 24704:2 24716:1 24737:1 24759:1 24851:1 24854:3 24867:2 24871:1 24888:1 24892:1 24894:1 24895:1 24907:1 24911:1 24928:1 24936:1 24961:2 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25148:1 25156:1 25168:1 25191:1 25303:1 25305:4 25308:1 25366:1 25371:1 25406:1 25435:1 25467:2 25472:1 25476:1 25478:1 25484:1 25497:2 25550:1 25619:4 25655:1 25660:1 25673:1 25699:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:2 25929:3 25992:1 26042:1 26066:1 26075:1 26140:1 26168:1 26191:1 26227:1 26262:1 26290:2 26293:1 26349:1 26358:1 26361:1 26383:1 26397:1 26419:1 26451:1 26474:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:2 26664:1 26684:1 26734:2 26739:1 26754:1 26759:1 26801:1 26804:1 26809:2 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26876:1 26907:2 26914:1 26922:1 26923:2 26960:1 26998:1 27016:1 27046:2 27073:1 27089:1 27091:1 27092:1 27105:1 27195:1 27200:1 27211:1 27245:1 27276:1 27295:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27450:1 27454:1 27456:1 27465:1 27469:5 27475:1 27491:1 27504:1 27505:2 27520:2 27546:1 27591:1 27609:1 27624:1 27631:5 27647:1 27668:7 27671:1 27689:2 27710:1 27743:1 27746:1 27774:1 27860:1 27892:1 27919:1 27939:1 27954:1 27999:1 28010:1 28011:1 28017:1 28024:1 28058:1 28088:2 28093:1 28105:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28226:2 28239:1 28280:1 28297:1 28413:1 28418:1 28426:2 28492:1 28543:2 28550:1 28559:1 28561:1 28585:1 28593:1 28611:2 28756:1 28760:4 28783:1
12 43:1 56:1 71:2 88:1 94:1 144:1 169:1 195:1 205:2 208:1 311:1 330:1 366:1 390:2 397:2 411:2 420:1 448:1 449:3 467:2 512:1 558:1 605:1 635:1 695:1 732:1 791:1 811:1 867:2 872:1 885:1 890:3 895:1 911:1 919:1 947:1 957:1 989:1 994:1 1026:1 1027:1 1059:1 1081:1 1094:1 1138:1 1190:1 1196:1 1201:2 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1319:1 1331:2 1341:1 1361:1 1404:4 1450:1 1452:1 1456:1 1460:3 1463:1 1513:1 1533:1 1542:1 1563:2 1566:1 1571:1 1575:1 1631:1 1664:1 1667:1 1677:4 1695:1 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1802:1 1816:2 1822:1 1824:1 1827:1 1842:1 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2127:1 2174:3 2185:2 2188:1 2199:1 2229:1 2230:1 2238:1 2240:2 2241:1 2245:3 2249:2 2252:1 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:3 2266:1 2281:2 2286:1 2303:1 2334:3 2344:2 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2466:1 2475:1 2502:1 2509:3 2527:1 2563:1 2570:1 2573:1 2582:1 2704:3 2710:1 2729:1 2755:2 2766:1 2775:1 2819:1 2869:3 2878:1 2949:1 2955:1 2962:1 2963:1 2975:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3116:1 3159:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3567:1 3583:1 3588:1 3635:1 3641:1 3660:1 3706:1 3731:1 3762:1 3777:1 3779:2 3793:1 3805:1 3849:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4039:1 4047:1 4058:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:3 4204:1 4209:1 4211:1 4217:1 4268:1 4296:1 4308:1 4354:1 4386:1 4400:1 4401:1 4418:1 4470:1 4525:1 4556:1 4566:1 4569:1 4621:2 4681:1 4781:1 4795:6 4832:1 4906:4 4922:3 4923:2 4926:1 4931:1 4940:2 4943:1 4949:1 4971:1 4983:1 5141:2 5179:1 5201:1 5210:1 5223:1 5233:2 5261:5 5294:7 5354:1 5386:1 5419:1 5447:1 5464:2 5470:1 5495:1 5516:1 5524:1 5592:1 5615:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:3 5915:1 5934:1 5937:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6077:1 6148:1 6155:1 6158:1 6163:1 6227:1 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:2 6254:6 6258:1 6311:1 6387:1 6398:1 6403:2 6434:1 6501:1 6537:2 6549:1 6553:1 6568:1 6612:1 6613:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6876:1 6948:1 6951:2 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:1 7089:1 7238:1 7248:2 7276:2 7277:1 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7415:1 7416:1 7447:7 7448:5 7455:1 7464:1 7469:1 7471:1 7504:1 7517:16 7532:3 7538:2 7543:1 7551:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7715:1 7723:1 7734:1 7741:1 7794:1 7829:2 7962:1 7979:3 8019:1 8023:1 8031:1 8067:1 8083:1 8143:1 8205:1 8213:1 8233:1 8238:1 8273:1 8279:1 8307:1 8348:1 8349:1 8351:1 8365:1 8366:1 8384:1 8391:1 8395:2 8403:1 8421:1 8437:2 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8736:1 8754:1 8757:1 8769:1 8795:1 8822:1 8844:2 8869:1 8901:1 8923:3 8958:1 8966:1 8984:1 9001:1 9010:1 9012:1 9037:1 9052:1 9055:2 9103:1 9136:1 9167:1 9172:1 9216:1 9232:3 9273:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:1 9375:1 9376:2 9389:2 9411:1 9415:1 9443:1 9449:1 9453:1 9454:1 9460:1 9490:3 9506:2 9616:1 9646:2 9699:1 9700:3 9703:1 9706:1 9748:1 9753:1 9813:1 9826:1 9835:1 9869:1 9882:1 9886:1 9968:1 10017:1 10022:1 10059:1 10070:1 10093:1 10101:2 10204:1 10244:2 10268:1 10298:1 10305:3 10320:1 10404:1 10419:1 10428:5 10438:1 10462:1 10496:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10924:1 10933:1 10973:1 10983:1 11064:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:1 11208:1 11224:1 11230:1 11231:1 11243:1 11256:2 11307:1 11328:1 11341:1 11371:1 11419:2 11425:1 11440:1 11443:1 11444:1 11449:1 11461:1 11500:1 11501:1 11534:1 11553:1 11586:1 11598:1 11599:1 11638:1 11658:1 11676:1 11715:1 11744:1 11755:1 11855:3 11896:2 11905:2 11921:1 11926:1 11941:1 11971:1 11987:1 12010:2 12077:1 12195:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:1 12346:1 12382:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12526:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12850:2 12851:2 12857:2 12871:1 12877:1 12895:1 12905:1 12940:1 13012:1 13021:1 13025:1 13054:2 13082:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:3 13322:1 13342:1 13344:2 13347:1 13350:3 13368:1 13387:1 13462:1 13489:2 13491:1 13527:1 13564:1 13581:2 13606:1 13619:2 13623:1 13631:2 13648:2 13649:1 13654:1 13686:1 13752:1 13791:2 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14068:1 14075:1 14099:1 14135:1 14144:1 14155:1 14164:1 14169:1 14172:1 14184:1 14233:1 14296:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14401:1 14406:3 14436:1 14528:1 14532:2 14533:1 14633:1 14637:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14868:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14958:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15234:3 15255:1 15259:3 15276:1 15277:1 15278:1 15285:2 15300:1 15314:2 15326:1 15349:1 15400:1 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:2 15843:1 15861:1 15900:1 15916:1 15935:1 15937:1 15941:1 16048:1 16071:1 16088:1 16117:1 16142:1 16161:1 16166:3 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16482:1 16495:1 16498:1 16519:1 16554:1 16563:1 16595:1 16627:1 16655:1 16686:1 16688:1 16714:1 16739:1 16749:1 16817:1 16833:1 16836:1 16856:1 16861:2 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17044:1 17046:1 17066:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17247:2 17266:1 17275:2 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17388:2 17390:1 17391:1 17419:1 17434:1 17436:1 17462:1 17483:1 17570:1 17573:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17785:1 17822:1 17889:1 17964:1 17985:1 17993:4 18002:1 18004:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:909 18226:1 18245:1 18288:1 18353:1 18405:1 18407:1 18536:1 18598:1 18667:1 18694:1 18712:1 18759:1 18836:1 18838:1 18918:1 18950:1 19029:5 19072:1 19081:1 19114:1 19124:2 19127:1 19217:1 19225:2 19245:1 19260:1 19272:1 19319:1 19327:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:2 19419:1 19429:1 19502:1 19527:1 19531:1 19533:1 19601:3 19645:1 19670:1 19680:2 19687:1 19717:1 19722:1 19746:1 19758:1 19806:1 19823:1 19829:1 19840:1 19856:1 19872:1 19884:1 19965:1 19972:1 20024:1 20039:1 20042:1 20047:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20277:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:1 20384:1 20399:1 20409:2 20411:1 20436:2 20438:2 20448:1 20510:1 20512:1 20556:1 20582:1 20604:2 20706:1 20712:1 20752:1 20803:2 20858:1 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20973:1 20994:1 21009:1 21055:1 21097:1 21137:1 21159:2 21168:1 21179:1 21185:5 21186:1 21198:1 21210:1 21238:1 21251:1 21348:2 21352:1 21361:1 21380:3 21383:1 21395:1 21396:1 21399:1 21433:1 21498:1 21547:1 21565:1 21566:1 21588:2 21593:1 21616:1 21632:1 21682:1 21698:1 21707:1 21774:1 21781:2 21788:1 21792:2 21795:1 21810:1 21815:1 21821:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 22039:1 22040:1 22052:1 22065:1 22089:1 22120:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22265:3 22270:1 22275:1 22324:1 22402:1 22420:1 22458:1 22490:2 22546:1 22566:4 22589:1 22643:1 22737:1 22777:1 22791:1 22796:1 22809:2 22818:1 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23016:1 23031:1 23037:1 23046:2 23064:1 23081:1 23098:1 23106:1 23116:1 23129:1 23157:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23594:1 23595:1 23619:3 23646:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:1 23787:1 23841:1 23862:2 23870:1 23876:2 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24110:1 24119:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24355:1 24369:1 24408:1 24499:1 24574:1 24589:1 24600:1 24603:1 24636:2 24639:1 24652:1 24665:1 24673:1 24701:1 24704:2 24716:1 24737:1 24759:1 24851:1 24854:3 24867:2 24871:1 24888:1 24892:1 24894:1 24895:1 24905:1 24907:1 24911:1 24928:1 24936:1 24961:2 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25148:1 25156:1 25168:1 25191:1 25303:1 25305:4 25308:1 25340:1 25366:1 25371:1 25406:1 25435:1 25467:2 25472:1 25476:1 25478:1 25484:1 25497:2 25550:1 25619:4 25655:1 25660:1 25673:1 25699:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:3 25929:3 25992:1 26023:1 26042:1 26066:1 26075:1 26140:1 26168:1 26191:1 26227:1 26262:1 26290:2 26293:1 26349:1 26358:1 26361:1 26383:1 26397:1 26419:1 26451:1 26474:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:2 26664:1 26684:1 26734:2 26739:1 26750:1 26754:1 26759:1 26801:1 26804:1 26809:2 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26876:1 26907:2 26914:1 26922:1 26923:2 26960:1 26998:1 27016:1 27046:2 27073:1 27089:1 27091:1 27092:1 27105:2 27195:1 27200:1 27211:1 27245:1 27276:1 27295:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27431:1 27450:1 27454:1 27456:1 27465:1 27469:5 27475:1 27491:1 27504:1 27505:2 27520:3 27546:1 27591:1 27601:1 27609:1 27624:1 27631:5 27641:1 27647:1 27668:7 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27774:1 27815:1 27860:1 27892:1 27919:1 27939:1 27952:1 27954:1 27999:1 28010:1 28011:1 28017:1 28024:1 28058:1 28088:2 28093:1 28105:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28280:1 28297:1 28413:1 28418:1 28424:1 28426:2 28492:1 28543:3 28550:1 28559:1 28561:1 28585:1 28593:1 28611:2 28718:1 28756:1 28760:4 28783:1
12 43:1 56:1 71:2 88:1 94:1 144:1 169:1 195:1 205:2 208:1 311:1 330:1 366:1 390:2 397:2 411:2 420:1 448:1 449:3 467:2 512:1 558:1 605:1 635:1 695:1 732:1 791:1 811:1 867:2 872:1 885:1 890:3 895:1 911:1 919:1 947:1 957:1 989:1 994:1 1026:1 1027:1 1059:1 1081:1 1094:1 1138:1 1190:1 1196:1 1201:2 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1319:1 1331:2 1341:1 1361:1 1404:4 1450:1 1452:1 1456:1 1460:3 1463:1 1513:1 1533:1 1542:1 1563:2 1566:1 1571:1 1575:1 1631:1 1664:1 1667:1 1677:4 1695:1 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1802:1 1816:2 1822:1 1824:1 1827:1 1842:1 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2127:1 2143:1 2174:3 2185:2 2188:1 2199:1 2229:1 2230:1 2238:1 2240:2 2241:1 2245:3 2249:2 2252:1 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:3 2266:1 2275:1 2281:2 2286:1 2303:1 2334:3 2344:2 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2466:1 2475:1 2502:1 2506:1 2509:3 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2704:3 2710:1 2729:1 2755:2 2758:1 2766:1 2775:1 2819:1 2869:3 2878:1 2949:1 2955:1 2962:1 2963:1 2975:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3116:1 3159:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3567:1 3583:1 3588:1 3635:1 3641:1 3660:1 3706:1 3731:1 3762:1 3773:1 3777:1 3779:2 3793:1 3805:1 3849:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4039:1 4047:1 4058:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:3 4204:1 4209:1 4211:1 4217:1 4268:2 4296:1 4308:1 4354:1 4386:1 4400:1 4401:1 4418:1 4463:1 4470:1 4525:1 4556:1 4566:1 4569:1 4587:1 4621:2 4681:1 4781:1 4795:6 4832:1 4906:4 4922:3 4923:2 4926:1 4931:1 4940:2 4943:1 4949:1 4971:1 4983:1 5141:2 5179:1 5201:1 5210:1 5223:1 5233:2 5261:5 5294:7 5354:1 5386:1 5419:1 5447:1 5464:2 5470:1 5495:1 5516:1 5524:1 5592:1 5615:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:3 5915:1 5934:1 5937:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6077:1 6148:1 6155:1 6158:1 6163:1 6227:1 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:2 6254:6 6258:1 6311:1 6387:1 6398:1 6403:2 6434:1 6501:1 6515:1 6537:2 6549:1 6553:1 6568:1 6612:1 6613:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6876:1 6948:1 6951:2 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:1 7089:1 7238:1 7248:2 7276:2 7277:1 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7415:1 7416:1 7447:7 7448:5 7455:1 7456:1 7464:1 7469:1 7471:1 7504:1 7517:17 7532:3 7538:2 7543:1 7551:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7715:1 7723:1 7734:1 7741:1 7794:1 7829:2 7962:1 7979:3 8019:1 8023:1 8031:1 8067:1 8083:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8307:1 8348:1 8349:1 8351:1 8365:1 8366:1 8384:1 8391:1 8395:2 8403:1 8421:1 8437:2 8447:1 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8662:1 8736:2 8754:1 8757:1 8769:1 8795:1 8822:1 8844:2 8869:1 8901:1 8923:3 8958:1 8966:1 8982:1 8984:1 9001:1 9010:1 9012:1 9037:1 9052:1 9055:2 9103:1 9136:1 9167:1 9172:1 9216:1 9232:3 9273:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:1 9375:1 9376:2 9389:2 9411:1 9415:1 9443:1 9449:1 9453:1 9454:1 9460:1 9490:3 9506:2 9616:1 9646:2 9699:1 9700:3 9703:1 9706:1 9748:1 9753:1 9813:1 9826:1 9835:1 9869:1 9882:1 9886:1 9917:1 9968:1 10017:1 10022:1 10059:1 10070:1 10093:1 10101:2 10204:1 10244:2 10268:1 10298:1 10305:3 10320:1 10404:1 10419:1 10428:5 10438:1 10462:1 10492:1 10496:1 10532:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10924:1 10933:1 10973:1 10983:2 11064:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:1 11208:1 11224:2 11230:1 11231:1 11243:1 11256:2 11307:1 11328:1 11341:1 11371:1 11419:2 11425:1 11433:1 11440:1 11443:1 11444:1 11449:1 11461:1 11500:1 11501:1 11534:1 11553:1 11586:1 11598:1 11599:1 11638:1 11658:1 11676:1 11715:1 11744:1 11755:1 11855:3 11896:2 11905:2 11921:1 11926:1 11941:1 11971:1 11987:1 12010:2 12077:1 12195:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12382:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12526:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12850:2 12851:2 12857:2 12871:1 12877:1 12882:1 12895:1 12905:1 12940:1 13012:1 13021:1 13025:1 13054:2 13082:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13266:1 13306:3 13322:1 13342:1 13344:2 13347:1 13350:3 13368:1 13387:1 13462:1 13489:2 13491:1 13527:1 13564:1 13581:2 13606:1 13619:2 13623:1 13631:2 13648:2 13649:1 13654:1 13686:1 13752:1 13791:2 13795:2 13849:1 13861:1 13955:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14068:1 14075:1 14099:1 14135:2 14144:1 14155:1 14164:1 14169:1 14172:1 14184:1 14233:1 14296:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14401:1 14406:3 14436:1 14528:1 14532:2 14533:1 14633:1 14637:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14868:1 14881:1 14908:1 14919:1 14926:1 14927:1 14930:1 14931:1 14958:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15234:3 15255:1 15259:3 15276:1 15277:1 15278:1 15285:2 15300:1 15314:2 15326:1 15349:1 15400:1 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:2 15843:1 15861:1 15900:1 15916:1 15935:1 15937:1 15941:2 16048:1 16071:1 16088:1 16117:1 16142:1 16161:1 16166:3 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16482:1 16495:1 16498:1 16519:1 16554:1 16563:1 16595:1 16627:1 16655:1 16686:1 16688:1 16714:1 16739:1 16749:1 16817:1 16833:1 16836:1 16856:1 16861:2 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17044:1 17046:1 17066:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17247:2 17266:1 17275:2 17284:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17388:2 17390:1 17391:1 17419:1 17434:1 17436:1 17462:1 17483:1 17570:1 17573:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17785:1 17822:1 17889:1 17964:1 17985:1 17993:4 18002:1 18004:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:935 18226:1 18245:1 18288:1 18353:1 18405:1 18407:1 18536:1 18598:1 18667:1 18694:1 18712:1 18759:1 18836:1 18838:1 18918:1 18950:1 19029:5 19072:1 19081:1 19114:1 19124:2 19127:1 19210:1 19217:1 19225:2 19245:1 19260:1 19272:1 19319:1 19327:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:2 19419:1 19429:1 19502:1 19527:1 19531:1 19533:1 19601:3 19645:1 19670:1 19680:2 19687:1 19717:1 19722:1 19746:1 19758:1 19806:1 19823:1 19829:1 19840:1 19856:1 19872:1 19884:1 19957:1 19959:1 19965:1 19972:1 20024:1 20039:1 20042:1 20047:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20277:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:1 20384:1 20399:1 20409:2 20411:1 20436:2 20438:2 20448:1 20510:1 20512:1 20556:1 20582:1 20604:2 20706:1 20712:1 20752:1 20803:2 20858:1 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20956:1 20973:1 20994:1 21009:1 21055:1 21097:1 21137:1 21159:2 21168:1 21179:1 21185:5 21186:1 21198:1 21210:1 21238:2 21251:1 21348:2 21352:1 21361:1 21380:3 21383:1 21395:1 21396:1 21399:1 21433:1 21498:1 21547:1 21565:1 21566:1 21588:2 21593:1 21616:1 21632:1 21682:1 21698:1 21707:1 21774:1 21781:2 21788:1 21792:2 21795:1 21810:1 21815:1 21821:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 22031:1 22039:1 22040:1 22052:1 22065:1 22089:1 22120:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22265:3 22270:1 22275:1 22324:1 22402:1 22420:1 22437:1 22458:1 22490:2 22546:1 22566:4 22589:1 22643:1 22737:1 22777:1 22791:1 22796:1 22809:2 22818:1 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23016:1 23031:1 23037:1 23046:2 23064:1 23080:1 23081:1 23098:1 23106:1 23116:1 23129:1 23157:1 23226:1 23237:1 23242:1 23251:1 23308:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23594:1 23595:1 23619:3 23646:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:1 23787:1 23841:1 23862:2 23870:1 23876:2 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24110:1 24119:1 24152:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24355:1 24356:1 24369:1 24408:1 24499:1 24574:1 24589:1 24600:1 24603:1 24636:3 24639:1 24652:1 24665:1 24673:1 24701:1 24704:2 24716:1 24737:1 24759:1 24851:1 24854:3 24867:2 24871:1 24888:1 24892:1 24894:1 24895:1 24905:1 24907:1 24911:1 24928:1 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25168:1 25191:1 25303:1 25305:4 25308:1 25340:1 25366:1 25371:1 25406:1 25435:1 25441:1 25467:2 25472:1 25476:1 25478:1 25484:1 25497:2 25550:1 25561:1 25619:4 25655:1 25660:1 25673:1 25699:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:3 25929:3 25953:1 25962:1 25992:1 26023:1 26042:1 26066:1 26075:1 26140:1 26168:1 26191:1 26227:1 26262:1 26290:2 26293:1 26302:1 26349:1 26358:1 26361:1 26383:1 26397:1 26419:1 26451:1 26474:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:2 26664:1 26684:1 26734:2 26739:1 26750:1 26754:1 26759:1 26794:1 26801:1 26804:1 26809:2 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26876:1 26907:3 26914:1 26922:1 26923:2 26960:1 26998:1 27016:1 27046:2 27073:1 27089:1 27091:1 27092:1 27105:2 27191:1 27195:1 27200:1 27211:1 27245:1 27276:1 27295:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27431:1 27450:1 27454:1 27456:1 27465:1 27469:5 27475:1 27491:1 27504:1 27505:2 27520:3 27546:1 27591:1 27601:1 27609:1 27624:1 27631:5 27641:1 27647:1 27668:7 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27774:1 27815:1 27860:1 27892:1 27919:1 27939:1 27952:1 27954:1 27999:1 28010:1 28011:1 28017:1 28024:1 28058:1 28088:2 28093:1 28105:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28280:1 28297:1 28413:1 28418:1 28424:1 28426:2 28492:1 28543:3 28550:1 28559:1 28561:1 28585:1 28593:1 28611:2 28709:1 28718:1 28756:1 28760:4 28783:1
12 43:1 56:1 71:2 88:1 94:1 118:1 144:1 169:1 195:1 205:2 208:1 226:1 311:1 330:1 366:2 390:2 397:2 411:2 420:1 448:1 449:3 467:2 512:1 533:1 558:1 605:1 635:1 695:1 732:1 791:1 811:1 867:2 872:1 885:1 890:3 895:1 911:1 919:1 947:1 957:1 982:1 989:1 994:1 1026:1 1027:1 1059:1 1081:1 1094:1 1138:1 1190:1 1196:1 1201:2 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1319:1 1331:3 1341:1 1361:1 1404:4 1450:1 1452:1 1456:1 1460:3 1463:1 1513:1 1533:1 1542:1 1563:2 1566:1 1571:1 1575:1 1631:1 1664:1 1667:1 1677:4 1695:1 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1802:1 1816:2 1822:1 1824:1 1827:1 1842:2 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2229:1 2230:1 2238:1 2240:2 2241:1 2245:3 2249:2 2252:2 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:3 2266:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2466:1 2475:1 2502:1 2506:1 2509:3 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2704:3 2710:1 2729:1 2755:2 2758:1 2766:1 2775:1 2819:1 2869:3 2878:1 2949:1 2955:1 2962:1 2963:1 2975:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3112:1 3116:1 3159:1 3166:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3567:1 3583:1 3588:1 3635:1 3641:1 3660:1 3706:1 3731:1 3762:1 3773:1 3777:1 3779:2 3793:1 3805:1 3849:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4039:1 4047:1 4058:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4204:1 4209:1 4211:1 4217:1 4268:2 4296:1 4308:1 4354:1 4386:1 4400:1 4401:1 4418:1 4463:1 4470:1 4525:1 4556:1 4566:1 4569:1 4587:1 4621:2 4681:1 4781:1 4795:6 4832:1 4906:4 4922:3 4923:2 4926:1 4931:1 4940:2 4943:2 4949:1 4971:1 4983:1 5141:2 5179:1 5201:1 5210:1 5223:1 5233:3 5261:5 5294:7 5354:1 5386:1 5419:1 5447:1 5464:2 5470:1 5495:1 5516:1 5524:1 5565:1 5592:1 5615:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:3 5915:1 5934:1 5937:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6077:1 6120:1 6148:1 6155:1 6158:1 6163:1 6227:1 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:2 6254:6 6258:1 6311:1 6387:1 6398:1 6403:2 6434:1 6501:1 6515:1 6537:2 6549:1 6553:1 6568:1 6612:1 6613:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6876:1 6948:1 6951:2 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:1 7089:1 7238:1 7248:2 7258:1 7276:3 7277:1 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7415:1 7416:1 7447:7 7448:5 7455:1 7456:1 7464:1 7469:1 7471:1 7483:1 7504:1 7517:18 7532:3 7538:2 7543:1 7551:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7715:1 7723:1 7734:1 7741:1 7794:1 7829:2 7962:2 7979:3 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8307:1 8348:1 8349:1 8351:1 8365:1 8366:1 8384:1 8391:1 8395:2 8403:1 8421:1 8437:2 8447:1 8458:1 8490:1 8523:1 8602:1 8653:1 8660:1 8662:1 8736:2 8754:1 8757:1 8769:2 8795:1 8822:1 8844:2 8869:1 8901:1 8923:3 8958:1 8966:2 8982:1 8984:1 9001:1 9010:1 9012:1 9037:1 9052:1 9055:2 9102:1 9103:1 9136:1 9167:1 9172:1 9189:1 9216:1 9232:3 9273:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:1 9375:1 9376:2 9389:2 9411:1 9415:1 9443:1 9449:1 9453:1 9454:1 9460:1 9490:3 9506:3 9616:1 9646:2 9699:1 9700:3 9703:1 9706:1 9748:1 9753:1 9813:1 9826:1 9835:1 9869:1 9882:1 9886:1 9917:1 9968:1 10017:1 10022:1 10059:1 10070:1 10093:1 10101:2 10204:1 10244:2 10268:1 10298:1 10305:3 10320:1 10404:1 10419:1 10428:5 10438:1 10462:1 10492:1 10496:1 10532:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10924:1 10933:1 10973:1 10983:2 11064:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:1 11208:1 11224:2 11230:1 11231:1 11243:1 11256:2 11307:1 11328:1 11341:1 11366:1 11371:2 11419:2 11425:1 11433:1 11440:1 11443:1 11444:1 11449:1 11461:1 11500:1 11501:1 11504:1 11529:1 11534:1 11553:1 11586:1 11598:1 11599:1 11638:1 11658:1 11676:1 11715:1 11744:1 11755:1 11855:4 11896:2 11905:2 11921:1 11926:1 11941:1 11971:1 11987:1 12010:2 12077:1 12195:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12382:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12526:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12905:1 12940:1 13012:1 13021:1 13025:1 13054:2 13082:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:3 13322:1 13342:1 13344:2 13347:1 13350:3 13368:1 13387:1 13414:1 13462:1 13481:1 13488:1 13489:2 13491:1 13527:1 13564:1 13581:2 13606:1 13619:2 13623:1 13631:2 13648:2 13649:1 13654:1 13686:1 13752:1 13755:1 13791:2 13795:2 13849:2 13861:1 13955:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14068:1 14075:1 14099:1 14135:2 14144:1 14155:1 14164:1 14169:1 14172:1 14184:1 14233:1 14278:1 14296:1 14313:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14401:1 14406:3 14436:1 14528:1 14532:2 14533:1 14633:1 14637:1 14645:1 14655:1 14659:1 14725:1 14811:1 14822:1 14868:1 14881:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14958:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15207:1 15234:3 15255:1 15259:3 15276:1 15277:1 15278:1 15285:2 15300:1 15314:2 15326:1 15349:1 15400:1 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:2 15843:1 15861:1 15900:1 15916:1 15935:1 15937:2 15941:2 16048:1 16071:1 16088:1 16117:1 16142:1 16161:1 16166:3 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16482:1 16495:1 16498:1 16519:1 16554:1 16563:1 16595:1 16627:1 16655:1 16686:1 16688:1 16714:1 16739:1 16749:1 16769:1 16817:1 16833:1 16836:1 16856:1 16861:2 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17029:1 17044:1 17046:1 17066:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17247:2 17266:1 17275:2 17284:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17388:2 17390:1 17391:1 17419:1 17434:1 17436:1 17462:1 17483:1 17564:1 17570:1 17573:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17785:1 17822:1 17889:1 17964:1 17985:1 17993:4 18002:1 18004:1 18007:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:967 18226:1 18245:1 18274:1 18288:1 18353:1 18405:1 18407:1 18536:1 18598:1 18667:1 18694:1 18712:1 18759:1 18786:1 18805:1 18836:1 18838:1 18918:1 18950:1 19029:6 19072:1 19081:1 19114:1 19124:2 19127:1 19210:1 19217:1 19225:2 19245:1 19260:1 19272:1 19319:1 19327:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:2 19419:1 19429:1 19482:1 19502:1 19527:1 19531:1 19533:1 19601:3 19645:1 19670:1 19680:2 19687:1 19717:1 19722:1 19746:1 19748:1 19758:1 19769:1 19806:1 19823:1 19829:1 19840:2 19856:1 19872:1 19884:1 19957:1 19959:1 19965:1 19972:1 20024:1 20039:1 20042:1 20047:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20277:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:1 20384:1 20399:1 20409:2 20411:1 20436:2 20438:2 20448:1 20510:1 20512:1 20556:1 20582:1 20604:2 20706:1 20712:1 20752:1 20803:2 20858:1 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20956:1 20973:1 20994:1 21009:1 21055:1 21097:1 21137:1 21159:2 21168:1 21179:1 21185:5 21186:1 21198:1 21210:1 21238:2 21251:1 21338:1 21348:3 21352:1 21361:1 21379:1 21380:3 21383:1 21395:1 21396:1 21399:1 21428:1 21433:1 21498:1 21547:1 21565:1 21566:1 21588:2 21593:1 21616:1 21632:1 21682:1 21698:1 21707:1 21774:1 21781:2 21788:1 21792:2 21795:1 21810:1 21815:1 21821:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 22031:1 22039:1 22040:1 22052:1 22065:1 22089:1 22120:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22265:4 22270:1 22275:1 22324:1 22402:1 22420:1 22437:1 22458:1 22490:2 22512:1 22546:1 22566:4 22589:1 22643:1 22727:1 22737:1 22777:1 22791:1 22796:1 22809:2 22818:1 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23016:1 23031:1 23037:2 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:1 23116:1 23129:1 23157:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23594:1 23595:1 23619:3 23627:1 23646:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23862:2 23870:1 23876:2 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24110:1 24119:1 24152:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24355:1 24356:1 24369:1 24408:1 24499:1 24574:1 24589:1 24600:2 24603:1 24636:3 24639:1 24652:1 24665:1 24673:1 24701:1 24704:2 24716:1 24737:1 24759:1 24851:1 24854:3 24867:2 24871:1 24888:1 24892:1 24894:1 24895:1 24905:1 24907:1 24911:1 24928:1 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25168:1 25191:1 25303:1 25305:4 25308:1 25340:1 25366:1 25371:1 25406:1 25435:1 25441:1 25467:2 25472:1 25476:1 25478:1 25484:1 25495:1 25497:2 25550:2 25561:1 25619:4 25655:1 25660:1 25673:1 25699:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:3 25929:3 25953:1 25962:1 25992:1 26023:1 26042:1 26066:1 26075:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:1 26290:2 26293:1 26302:1 26349:1 26358:1 26361:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:2 26664:1 26683:1 26684:1 26734:2 26739:1 26750:1 26754:1 26759:1 26794:1 26801:2 26804:1 26809:2 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26907:4 26914:1 26922:1 26923:2 26960:1 26998:1 27016:1 27046:2 27073:1 27089:1 27091:1 27092:1 27105:2 27191:1 27195:1 27200:1 27211:1 27245:1 27276:1 27295:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27431:1 27450:1 27454:1 27456:1 27465:1 27469:5 27475:1 27491:1 27504:1 27505:2 27520:4 27546:1 27591:1 27601:1 27609:1 27624:1 27631:5 27641:1 27647:1 27668:7 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27774:1 27815:1 27860:1 27892:1 27919:1 27939:1 27952:1 27954:1 27999:1 28010:1 28011:1 28017:1 28024:1 28058:1 28088:2 28093:2 28105:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28280:1 28297:1 28413:1 28418:1 28424:1 28426:2 28492:1 28543:4 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28709:1 28718:1 28756:1 28760:4 28783:1 28796:1
12 43:1 56:1 71:2 88:1 94:1 118:1 144:1 169:1 195:1 205:2 208:1 226:1 311:1 330:1 366:2 390:2 397:2 411:2 420:1 448:1 449:3 467:2 480:1 512:1 533:1 558:1 605:1 635:1 695:1 732:1 791:1 811:1 867:2 872:1 885:1 890:3 895:1 911:1 919:1 947:1 957:1 982:1 989:1 994:1 1026:1 1027:1 1059:1 1081:1 1094:1 1138:1 1190:1 1196:1 1201:2 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1319:1 1331:3 1341:1 1345:1 1361:1 1404:4 1450:1 1452:1 1456:1 1460:3 1463:1 1513:1 1533:1 1542:1 1563:2 1566:1 1571:1 1575:1 1631:1 1664:1 1667:1 1677:4 1695:1 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1802:1 1816:2 1822:1 1824:1 1827:1 1842:2 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2229:1 2230:1 2238:1 2240:2 2241:1 2245:3 2249:2 2252:2 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:3 2266:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2466:1 2475:1 2502:1 2506:1 2509:3 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2704:3 2710:1 2729:1 2755:2 2758:1 2766:1 2775:1 2819:1 2869:3 2878:1 2949:1 2955:1 2962:1 2963:1 2975:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3112:1 3116:1 3159:1 3166:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3567:1 3583:1 3588:1 3630:1 3635:1 3641:1 3656:1 3660:1 3706:1 3731:1 3762:1 3772:1 3773:1 3775:1 3777:1 3779:2 3793:1 3805:1 3849:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4039:1 4047:1 4058:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4204:1 4209:1 4211:1 4217:1 4248:1 4268:2 4296:1 4308:1 4354:1 4386:1 4400:1 4401:1 4418:1 4452:1 4463:1 4470:1 4481:1 4525:1 4556:1 4566:1 4569:1 4587:1 4621:2 4681:1 4781:1 4795:6 4832:1 4906:4 4922:3 4923:2 4926:1 4931:1 4940:2 4943:2 4949:1 4971:1 4983:1 5141:2 5179:1 5201:1 5210:1 5223:1 5233:3 5261:5 5294:8 5354:1 5386:1 5419:1 5447:1 5464:2 5470:1 5495:1 5516:1 5524:1 5565:1 5592:1 5615:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:3 5915:1 5934:1 5937:1 5946:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6077:1 6120:1 6148:1 6155:1 6158:1 6163:1 6227:1 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:2 6254:6 6258:1 6311:1 6387:1 6398:1 6403:2 6434:1 6501:1 6515:1 6537:2 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6876:1 6948:1 6951:2 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:1 7089:1 7238:1 7248:2 7258:1 7276:3 7277:1 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7415:1 7416:1 7447:7 7448:5 7455:1 7456:1 7464:1 7469:1 7471:1 7483:1 7504:1 7517:18 7532:3 7538:2 7543:1 7551:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7715:1 7723:1 7734:1 7741:1 7794:1 7829:2 7962:2 7979:3 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8307:1 8348:1 8349:1 8351:1 8365:1 8366:1 8384:1 8391:1 8395:2 8403:1 8421:1 8437:2 8447:1 8458:1 8490:1 8523:1 8602:1 8653:2 8660:1 8662:1 8736:2 8754:1 8757:1 8769:2 8795:1 8822:1 8844:2 8869:1 8901:1 8923:3 8958:1 8966:2 8982:1 8984:1 9001:1 9010:1 9012:1 9037:1 9052:1 9055:2 9102:1 9103:1 9136:1 9167:1 9169:1 9172:1 9189:1 9216:1 9232:3 9273:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:2 9375:1 9376:2 9389:2 9411:1 9415:1 9443:1 9449:1 9453:1 9454:1 9460:1 9490:3 9506:3 9616:1 9646:3 9699:1 9700:3 9703:1 9706:1 9748:1 9753:1 9813:1 9822:1 9824:1 9826:1 9835:1 9869:1 9882:1 9886:1 9917:1 9968:1 10017:1 10022:1 10059:1 10070:1 10093:1 10101:2 10197:1 10204:1 10244:2 10268:1 10298:1 10305:3 10320:1 10372:1 10404:1 10419:1 10428:5 10438:1 10462:1 10492:1 10496:1 10532:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10924:1 10933:1 10973:1 10983:2 11064:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:1 11208:1 11224:2 11230:1 11231:1 11243:1 11256:2 11307:1 11328:1 11341:1 11366:1 11371:2 11419:2 11425:1 11433:1 11440:1 11443:1 11444:1 11449:1 11461:1 11500:1 11501:1 11504:1 11529:1 11534:1 11553:1 11586:1 11598:1 11599:1 11638:1 11658:1 11676:1 11715:1 11744:1 11755:1 11855:4 11879:1 11880:1 11896:2 11905:2 11921:1 11926:1 11941:1 11971:1 11987:1 12010:2 12077:1 12195:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12526:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12905:1 12940:1 13012:1 13021:1 13025:1 13054:2 13082:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:3 13322:1 13342:1 13344:2 13347:1 13350:3 13368:1 13387:1 13414:1 13462:1 13477:1 13481:1 13488:1 13489:2 13491:1 13527:1 13564:1 13581:2 13606:1 13619:2 13623:1 13631:2 13648:2 13649:1 13654:1 13686:1 13752:1 13755:1 13791:2 13795:2 13849:2 13861:1 13955:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14068:1 14075:1 14099:1 14135:2 14144:1 14155:1 14164:1 14169:1 14172:1 14180:1 14184:1 14196:1 14233:1 14253:1 14278:1 14296:1 14313:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14401:1 14406:3 14412:1 14436:1 14513:1 14528:1 14532:2 14533:1 14633:1 14637:1 14645:1 14655:1 14659:1 14725:1 14786:1 14811:1 14822:1 14832:1 14868:1 14881:1 14890:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14958:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15207:1 15234:3 15255:1 15259:3 15276:1 15277:1 15278:1 15285:2 15300:1 15314:2 15326:1 15349:1 15400:1 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:2 15843:1 15861:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 16048:1 16060:1 16071:1 16088:1 16117:1 16142:1 16161:1 16166:3 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16482:1 16495:1 16498:1 16519:1 16554:1 16563:1 16595:1 16627:1 16655:1 16686:1 16688:1 16714:1 16739:1 16749:1 16769:1 16817:1 16833:1 16836:1 16856:1 16861:2 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17029:1 17044:1 17046:1 17066:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17247:2 17266:1 17275:2 17284:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17388:2 17390:1 17391:1 17419:1 17434:1 17436:1 17462:1 17483:1 17564:1 17570:1 17573:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17785:1 17822:1 17835:1 17889:1 17964:1 17985:1 17993:4 18002:1 18004:1 18007:1 18023:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:1025 18226:1 18245:1 18274:1 18288:1 18353:1 18405:1 18407:1 18536:1 18598:1 18667:1 18694:1 18712:1 18759:1 18786:1 18805:1 18836:1 18838:1 18871:1 18918:1 18937:1 18950:1 19029:6 19072:1 19081:1 19114:1 19124:2 19127:1 19210:1 19217:1 19225:2 19245:1 19260:1 19272:1 19319:1 19327:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:2 19419:1 19429:1 19436:1 19482:1 19502:1 19527:1 19531:1 19533:1 19601:3 19645:1 19670:1 19680:2 19687:1 19717:1 19722:1 19746:1 19748:1 19758:1 19769:1 19770:1 19806:1 19823:1 19829:1 19840:2 19856:1 19872:1 19884:1 19957:1 19959:1 19965:1 19972:1 20024:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20277:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:2 20384:1 20399:1 20409:2 20411:1 20436:2 20438:2 20448:1 20510:1 20512:1 20556:1 20582:1 20604:2 20706:1 20712:1 20752:1 20803:2 20858:1 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20956:1 20973:1 20994:1 21009:1 21055:1 21097:1 21137:1 21159:2 21168:1 21179:1 21185:5 21186:1 21198:1 21210:1 21238:2 21251:1 21338:1 21348:3 21352:1 21361:1 21379:1 21380:3 21383:1 21395:1 21396:1 21399:1 21428:1 21433:1 21498:1 21547:1 21565:1 21566:1 21588:2 21593:1 21616:1 21632:1 21682:1 21698:1 21707:1 21774:1 21781:2 21788:1 21792:2 21795:1 21810:1 21815:1 21821:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 22031:1 22039:1 22040:1 22052:1 22065:1 22089:1 22120:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22265:4 22270:1 22275:1 22324:1 22402:1 22420:2 22437:1 22458:1 22490:2 22512:1 22546:1 22566:4 22589:1 22643:1 22727:1 22737:1 22777:1 22791:1 22796:1 22809:2 22818:1 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23016:1 23031:1 23037:2 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23594:1 23595:1 23619:3 23627:1 23646:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23862:2 23870:1 23876:2 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24110:1 24119:1 24152:1 24174:1 24180:1 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24355:1 24356:1 24369:1 24408:1 24499:1 24574:1 24589:1 24600:2 24603:1 24636:3 24639:1 24652:1 24665:1 24673:1 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24834:1 24851:1 24854:3 24867:2 24871:1 24888:1 24892:1 24894:1 24895:1 24905:1 24907:1 24911:2 24928:1 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25168:1 25180:1 25188:1 25191:1 25255:1 25303:1 25305:4 25308:1 25340:1 25366:1 25371:1 25406:1 25435:1 25441:1 25467:2 25472:1 25476:1 25478:1 25484:1 25495:1 25497:2 25550:2 25561:1 25619:4 25655:1 25660:1 25673:1 25699:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:3 25929:3 25953:1 25962:1 25992:1 26023:1 26042:1 26066:1 26075:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:1 26290:2 26293:1 26302:1 26349:1 26358:1 26361:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:2 26664:1 26683:1 26684:1 26734:2 26735:1 26739:1 26750:1 26754:1 26759:1 26794:1 26801:3 26804:1 26809:2 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26907:4 26914:1 26922:1 26923:2 26960:1 26998:1 27016:1 27046:2 27073:1 27089:1 27091:1 27092:1 27105:2 27191:1 27195:1 27200:1 27211:1 27245:1 27276:1 27295:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27431:1 27439:1 27450:1 27454:1 27456:1 27465:1 27469:5 27475:1 27491:1 27504:1 27505:2 27520:4 27546:1 27591:1 27601:1 27609:1 27624:1 27631:5 27641:1 27647:1 27668:7 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:1 27774:1 27815:1 27860:1 27892:1 27919:1 27939:1 27952:1 27954:1 27999:1 28010:1 28011:1 28017:1 28024:1 28058:1 28088:2 28093:2 28105:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28280:1 28297:1 28413:1 28418:1 28424:1 28426:2 28492:1 28535:1 28543:4 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28709:1 28718:1 28756:1 28760:4 28783:1 28796:1
12 2:1 43:1 56:1 71:2 88:1 94:1 118:1 144:1 169:1 195:1 205:2 208:1 226:1 311:1 330:1 366:2 390:2 397:2 411:2 420:1 448:1 449:3 467:2 480:1 512:1 533:1 558:1 605:1 635:1 695:1 732:1 791:1 811:1 867:3 872:1 885:1 890:3 895:1 911:1 919:1 947:1 957:1 982:1 989:1 994:1 1026:1 1027:1 1059:1 1081:1 1094:1 1108:1 1138:1 1190:1 1196:1 1201:2 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:1 1331:3 1341:1 1345:1 1361:1 1404:4 1450:1 1452:1 1456:1 1460:3 1463:1 1513:1 1533:1 1542:1 1563:2 1566:1 1571:1 1575:1 1631:1 1664:1 1667:1 1677:4 1695:1 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1822:1 1824:1 1827:1 1842:2 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2229:1 2230:1 2238:1 2240:2 2241:1 2245:3 2249:2 2252:2 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:4 2266:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:3 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2704:3 2710:1 2729:1 2755:2 2758:1 2766:1 2775:1 2819:1 2869:4 2878:1 2949:1 2955:1 2962:1 2963:1 2975:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3112:1 3116:1 3159:1 3166:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3567:1 3583:1 3588:1 3623:1 3630:2 3635:1 3641:1 3656:1 3660:1 3706:1 3731:1 3762:1 3772:1 3773:1 3775:1 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3879:2 3886:1 3911:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4039:2 4047:1 4058:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4204:1 4209:1 4211:1 4217:1 4248:1 4268:2 4296:1 4308:1 4354:1 4386:1 4400:1 4401:1 4418:1 4452:1 4463:1 4470:1 4481:1 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4681:1 4781:1 4795:6 4832:1 4846:1 4906:5 4922:3 4923:2 4926:1 4931:1 4940:2 4943:2 4949:1 4971:1 4983:1 5078:1 5141:2 5179:1 5201:1 5210:1 5223:1 5233:3 5257:1 5261:5 5294:8 5354:1 5386:1 5419:1 5447:1 5464:2 5470:1 5495:1 5516:1 5524:1 5565:1 5592:1 5615:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:4 5915:1 5934:1 5937:1 5946:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6061:1 6077:2 6120:1 6148:1 6155:1 6158:1 6163:1 6212:1 6227:3 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:2 6254:6 6258:1 6311:1 6387:1 6398:1 6403:2 6434:1 6501:1 6515:1 6537:2 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6876:1 6948:1 6951:2 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:1 7089:1 7238:1 7248:2 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7415:1 7416:1 7447:7 7448:5 7455:1 7456:1 7464:1 7469:1 7471:1 7483:1 7504:1 7517:19 7532:4 7538:2 7543:1 7551:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7715:1 7723:1 7734:1 7741:1 7794:1 7829:2 7884:1 7962:2 7979:3 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:1 8351:1 8365:1 8366:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8434:1 8437:2 8447:1 8458:1 8490:1 8523:1 8602:1 8653:2 8660:1 8662:1 8736:2 8754:1 8757:1 8769:2 8795:1 8822:1 8844:2 8846:1 8869:1 8901:1 8923:3 8958:1 8966:2 8982:1 8984:1 9001:1 9010:2 9012:2 9037:1 9052:1 9055:2 9102:1 9103:1 9136:1 9167:1 9169:1 9172:1 9189:1 9216:1 9232:3 9273:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:1 9454:1 9460:1 9490:3 9506:3 9616:1 9646:3 9699:1 9700:3 9703:1 9706:1 9748:1 9753:1 9813:1 9822:2 9824:1 9826:1 9835:1 9869:1 9882:1 9886:1 9917:1 9968:1 9996:1 10017:1 10021:1 10022:1 10059:1 10070:1 10093:2 10101:2 10197:1 10204:2 10244:2 10268:1 10298:1 10305:3 10310:1 10320:1 10372:1 10404:1 10419:1 10428:5 10438:1 10439:1 10462:1 10492:1 10496:1 10498:1 10532:1 10682:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10924:1 10933:1 10973:1 10983:2 11064:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:3 11208:1 11224:2 11230:1 11231:1 11243:1 11256:2 11307:1 11323:1 11328:1 11341:1 11346:1 11366:1 11371:2 11419:2 11425:1 11433:1 11440:1 11443:1 11444:1 11449:1 11461:1 11500:1 11501:1 11504:1 11529:1 11534:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11658:1 11676:1 11689:1 11715:1 11744:1 11755:1 11855:4 11879:1 11880:1 11896:2 11905:2 11918:1 11921:1 11926:1 11941:1 11971:1 11987:1 11994:1 12010:2 12077:1 12195:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12526:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12905:1 12940:1 13012:1 13021:2 13025:1 13054:2 13082:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:3 13322:1 13342:1 13344:2 13347:1 13350:3 13368:2 13387:1 13414:1 13424:1 13462:1 13477:1 13481:1 13488:1 13489:2 13491:1 13527:1 13564:1 13578:1 13581:2 13606:1 13619:2 13623:1 13631:2 13648:2 13649:1 13654:1 13686:1 13752:1 13755:1 13791:2 13795:2 13835:1 13849:2 13861:1 13955:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14058:1 14068:1 14075:1 14099:1 14135:2 14144:1 14155:1 14164:1 14169:1 14172:1 14180:1 14184:1 14196:1 14233:1 14253:2 14278:1 14296:1 14313:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14436:1 14513:1 14528:1 14532:2 14533:1 14633:1 14637:2 14645:1 14655:1 14659:1 14725:1 14786:1 14811:1 14822:1 14832:1 14868:1 14881:1 14890:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14958:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15207:1 15234:3 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:2 15300:1 15314:3 15326:1 15349:1 15400:1 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:2 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 16048:1 16060:2 16071:1 16088:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16482:1 16495:1 16498:1 16519:1 16554:1 16563:1 16595:1 16627:1 16655:1 16664:1 16686:1 16688:1 16714:1 16739:1 16749:1 16769:1 16817:1 16833:1 16836:1 16856:1 16861:2 16947:1 16956:1 16960:1 17014:1 17015:1 17021:1 17026:1 17029:1 17044:1 17046:1 17066:2 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17247:2 17255:1 17266:1 17275:2 17284:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17388:2 17390:1 17391:1 17419:1 17434:1 17436:1 17462:1 17483:1 17487:1 17564:1 17570:1 17573:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17785:1 17822:1 17835:2 17889:1 17964:1 17985:1 17993:4 18002:1 18004:1 18007:1 18023:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:1085 18226:1 18245:1 18274:1 18288:1 18353:1 18405:1 18406:1 18407:1 18536:1 18567:1 18598:1 18667:1 18694:1 18712:1 18753:1 18759:2 18775:1 18786:1 18805:1 18836:1 18838:1 18863:1 18871:2 18918:1 18937:1 18950:1 19029:6 19072:1 19081:1 19114:1 19124:2 19127:1 19210:1 19217:1 19225:2 19245:1 19260:1 19272:1 19319:2 19327:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:2 19419:1 19429:1 19436:1 19482:1 19502:1 19527:1 19531:1 19533:1 19601:3 19645:1 19670:2 19680:2 19687:1 19689:1 19717:1 19722:1 19746:1 19748:1 19758:1 19764:1 19769:1 19770:1 19806:1 19823:1 19829:1 19840:2 19856:1 19872:1 19884:1 19957:1 19959:1 19965:1 19972:1 20024:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20277:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:2 20384:2 20399:1 20409:2 20411:1 20436:2 20438:2 20448:1 20510:1 20512:1 20556:1 20582:1 20604:2 20706:1 20712:1 20752:1 20803:2 20858:1 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20956:1 20973:1 20994:1 21009:1 21055:1 21097:1 21137:1 21159:2 21168:1 21179:1 21185:5 21186:1 21198:1 21210:1 21238:2 21251:1 21294:1 21338:1 21348:3 21352:1 21361:1 21379:1 21380:3 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21498:1 21547:1 21565:1 21566:1 21588:2 21593:1 21616:1 21632:1 21682:2 21698:1 21707:1 21761:1 21774:1 21781:2 21788:1 21792:2 21795:1 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 22031:1 22039:1 22040:1 22052:1 22057:1 22065:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22265:4 22270:1 22275:1 22324:1 22347:1 22365:2 22402:2 22420:2 22437:1 22458:1 22490:2 22512:1 22546:1 22566:4 22589:1 22643:1 22727:1 22737:1 22777:1 22791:1 22796:1 22809:2 22818:1 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23016:1 23031:1 23037:2 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23594:1 23595:1 23619:3 23627:1 23646:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23862:2 23870:1 23876:2 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24110:1 24119:1 24150:1 24152:1 24174:1 24180:2 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24499:1 24574:1 24589:1 24600:2 24603:1 24636:3 24639:1 24652:1 24665:1 24673:1 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24834:1 24851:1 24854:3 24867:2 24871:1 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24928:1 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25303:1 25305:4 25308:1 25340:1 25366:1 25371:1 25406:1 25435:1 25441:1 25467:2 25472:1 25476:1 25478:1 25484:1 25495:1 25497:2 25550:2 25552:1 25561:1 25619:4 25655:1 25660:2 25673:1 25699:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:3 25929:3 25953:1 25960:1 25962:1 25985:1 25992:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:1 26290:2 26293:1 26302:1 26349:1 26358:1 26361:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:2 26664:1 26683:1 26684:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:1 26759:1 26794:1 26801:3 26804:1 26809:2 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26960:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:1 27092:1 27105:2 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27431:1 27439:1 27450:1 27454:1 27456:1 27465:1 27469:5 27475:1 27491:1 27504:1 27505:2 27520:4 27546:1 27573:1 27591:1 27601:1 27605:1 27609:1 27624:1 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:1 27774:1 27815:1 27860:1 27892:1 27919:1 27939:1 27952:1 27954:1 27999:1 28010:1 28011:1 28017:1 28024:1 28058:1 28088:2 28093:2 28105:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28280:1 28297:1 28413:1 28418:1 28424:1 28426:2 28492:1 28535:1 28543:4 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28671:1 28695:1 28701:1 28709:1 28718:1 28756:1 28760:4 28783:1 28796:1 28808:1
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 330:1 366:2 390:2 397:2 411:2 420:1 448:1 449:3 457:1 467:2 480:1 512:1 533:1 558:1 605:2 635:1 650:1 695:1 732:1 791:1 796:1 811:1 867:3 872:1 885:1 890:4 895:1 911:1 919:1 947:1 957:1 982:1 989:1 994:1 1026:1 1027:1 1059:1 1081:1 1088:1 1094:1 1108:1 1138:1 1190:1 1196:1 1201:2 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:1 1331:3 1341:1 1345:1 1361:1 1404:4 1450:1 1452:1 1456:1 1460:4 1463:1 1513:1 1533:1 1542:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:1 1631:1 1664:1 1667:1 1677:4 1695:1 1701:1 1703:1 1726:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1822:1 1824:1 1827:1 1842:2 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2202:1 2229:1 2230:1 2238:1 2240:2 2241:2 2245:3 2249:2 2252:2 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:4 2266:1 2268:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:3 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2704:3 2710:1 2729:1 2755:2 2758:1 2766:2 2775:1 2819:1 2827:1 2869:4 2878:1 2949:1 2955:1 2962:1 2963:1 2975:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3112:1 3116:1 3159:1 3166:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3567:1 3583:1 3588:1 3623:1 3630:3 3635:1 3641:1 3656:1 3660:1 3706:1 3731:1 3762:1 3772:1 3773:1 3775:2 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3870:1 3879:2 3886:1 3911:1 3933:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4204:1 4209:1 4211:1 4217:1 4248:1 4260:1 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4452:1 4463:1 4470:1 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4681:1 4781:1 4795:6 4796:1 4832:1 4846:1 4906:5 4922:3 4923:2 4926:1 4931:1 4940:2 4943:2 4949:1 4951:1 4953:1 4971:1 4983:1 5078:1 5141:2 5179:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:5 5294:8 5354:1 5386:1 5419:1 5447:1 5464:2 5470:1 5495:1 5513:1 5516:1 5524:1 5565:1 5592:1 5615:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:5 5915:1 5934:1 5937:1 5946:1 5947:1 5954:1 5973:1 6001:1 6024:1 6028:1 6061:1 6077:2 6120:1 6148:2 6155:1 6158:1 6163:1 6212:1 6227:3 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:3 6254:7 6258:1 6311:2 6387:1 6398:1 6403:2 6434:1 6501:1 6515:1 6528:1 6537:2 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6654:3 6679:1 6690:1 6727:1 6783:1 6786:1 6810:1 6876:1 6948:1 6951:2 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:1 7089:1 7238:1 7248:2 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:1 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7464:1 7469:1 7471:1 7483:1 7504:1 7517:21 7532:4 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7712:1 7715:1 7723:1 7734:1 7741:1 7794:1 7829:2 7884:1 7962:2 7979:3 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:1 8351:1 8362:1 8365:1 8366:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8434:1 8437:2 8447:1 8458:1 8490:1 8523:1 8602:1 8653:2 8660:1 8662:1 8736:2 8754:1 8757:1 8769:2 8795:1 8822:1 8843:1 8844:2 8846:1 8869:1 8875:1 8901:1 8923:3 8958:1 8966:2 8982:1 8984:1 9001:1 9010:2 9012:2 9014:1 9037:1 9052:1 9055:2 9102:1 9103:1 9136:1 9167:1 9169:1 9172:1 9189:1 9216:1 9232:4 9273:1 9274:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:2 9454:1 9460:1 9490:3 9506:3 9512:1 9616:1 9646:3 9699:1 9700:3 9703:1 9706:1 9748:1 9753:2 9813:1 9822:3 9824:1 9826:1 9835:1 9869:1 9882:1 9886:1 9917:1 9968:1 9988:1 9996:1 10017:1 10021:1 10022:1 10059:1 10070:1 10093:2 10101:2 10197:1 10204:2 10244:2 10268:1 10298:1 10305:3 10310:1 10320:1 10372:1 10404:1 10419:1 10428:5 10438:1 10439:1 10462:1 10492:1 10496:1 10498:1 10532:1 10682:1 10685:1 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10825:1 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10924:1 10931:1 10933:1 10973:1 10982:1 10983:2 11056:1 11064:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:4 11196:1 11208:1 11224:2 11230:1 11231:1 11243:1 11256:2 11307:1 11323:1 11328:1 11341:1 11346:1 11366:1 11371:3 11419:2 11425:1 11433:1 11440:1 11443:1 11444:1 11449:1 11461:2 11500:1 11501:1 11504:1 11529:1 11534:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:1 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11855:4 11879:1 11880:1 11896:2 11905:2 11918:1 11921:1 11926:1 11941:1 11971:1 11987:1 11994:1 12010:2 12067:1 12077:1 12195:1 12211:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12526:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12905:1 12940:1 13012:1 13021:2 13025:1 13054:2 13082:2 13095:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:3 13322:1 13342:1 13344:2 13347:1 13350:4 13368:2 13387:1 13401:1 13414:1 13424:1 13462:1 13477:2 13481:1 13488:1 13489:2 13491:1 13497:1 13527:1 13564:1 13578:1 13581:2 13593:1 13599:1 13606:1 13619:3 13623:1 13631:2 13648:2 13649:1 13654:1 13675:1 13686:1 13752:1 13755:1 13791:2 13795:2 13835:1 13849:2 13861:1 13955:1 13956:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14058:1 14068:1 14075:1 14099:1 14135:2 14144:1 14155:1 14164:1 14169:1 14172:1 14180:1 14184:1 14196:1 14233:1 14253:3 14278:1 14296:1 14313:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14436:1 14487:1 14513:1 14528:1 14532:2 14533:1 14633:1 14637:2 14645:1 14655:1 14659:1 14725:1 14736:1 14786:1 14798:1 14811:1 14822:1 14832:1 14868:1 14881:1 14890:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14958:1 14986:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15162:1 15178:1 15207:1 15234:3 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:3 15300:2 15314:3 15326:1 15349:1 15400:1 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:2 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 16031:1 16048:1 16060:3 16071:1 16088:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16482:1 16495:1 16498:1 16519:1 16554:1 16563:1 16595:1 16622:1 16627:1 16655:1 16664:1 16686:1 16688:1 16714:1 16739:1 16749:1 16769:1 16817:1 16833:1 16836:1 16856:1 16861:2 16947:1 16956:1 16960:1 16964:1 17014:1 17015:1 17021:1 17026:1 17029:1 17044:1 17046:1 17066:2 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17240:1 17247:2 17255:1 17266:1 17275:2 17284:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17388:2 17390:1 17391:1 17419:1 17432:1 17434:1 17436:1 17462:1 17483:1 17487:1 17564:1 17570:1 17573:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17785:1 17822:1 17835:3 17889:1 17964:1 17985:1 17993:4 18002:1 18004:1 18007:1 18023:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:1145 18226:1 18245:1 18274:1 18288:1 18353:1 18405:1 18406:1 18407:1 18536:1 18567:1 18598:1 18667:1 18694:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18805:1 18836:1 18838:1 18863:1 18871:3 18918:1 18937:1 18950:1 19029:6 19072:1 19081:1 19114:1 19124:2 19127:1 19210:1 19217:1 19225:2 19245:1 19260:1 19272:1 19278:1 19282:1 19319:2 19327:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19419:1 19429:1 19436:2 19482:1 19502:1 19527:1 19531:1 19533:1 19601:3 19645:1 19670:2 19680:3 19687:1 19689:1 19717:1 19722:1 19746:2 19748:1 19758:1 19764:1 19769:1 19770:1 19806:1 19823:1 19829:1 19840:2 19856:1 19867:1 19872:1 19884:1 19957:1 19959:1 19965:2 19972:1 20024:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20277:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:2 20384:2 20399:1 20409:2 20411:1 20436:2 20438:2 20448:1 20510:1 20512:1 20556:1 20582:1 20604:2 20706:1 20712:1 20752:1 20803:2 20858:1 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20956:1 20973:1 20994:1 21009:1 21055:1 21097:1 21137:1 21159:2 21168:1 21175:1 21179:1 21185:5 21186:1 21198:2 21210:1 21238:2 21251:1 21294:1 21338:1 21348:3 21352:1 21361:1 21364:1 21379:1 21380:3 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21498:1 21547:1 21563:1 21565:1 21566:1 21588:2 21593:1 21616:1 21622:1 21632:1 21682:2 21698:1 21707:1 21761:1 21774:1 21781:2 21788:1 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22031:1 22039:1 22040:1 22052:1 22057:1 22065:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22265:4 22270:1 22275:1 22324:1 22347:1 22365:2 22402:2 22420:2 22437:1 22458:1 22490:2 22512:1 22546:1 22566:4 22584:1 22589:1 22643:1 22727:1 22737:1 22777:1 22781:2 22791:1 22796:1 22809:2 22818:1 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23016:1 23031:1 23037:2 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23558:1 23594:1 23595:1 23619:3 23627:1 23646:1 23669:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23862:2 23870:1 23876:2 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24089:1 24110:1 24119:1 24124:1 24150:1 24152:1 24174:1 24180:2 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24499:1 24574:1 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:1 24665:1 24673:1 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24801:1 24834:1 24851:1 24854:3 24867:2 24871:1 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24928:1 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25303:1 25305:4 25308:1 25340:1 25366:1 25371:1 25406:1 25435:1 25441:1 25467:2 25472:1 25476:1 25478:1 25484:1 25495:1 25497:2 25550:2 25552:1 25561:1 25619:4 25655:1 25660:2 25673:1 25699:1 25740:1 25750:1 25757:1 25777:1 25825:1 25848:1 25851:1 25873:1 25910:3 25929:3 25953:1 25960:1 25962:1 25985:1 25992:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:1 26290:2 26293:1 26302:1 26349:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26644:1 26658:2 26664:1 26683:1 26684:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:1 26759:1 26794:1 26801:3 26804:1 26809:2 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26960:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:1 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27308:1 27312:3 27353:1 27361:1 27378:1 27389:1 27393:2 27431:1 27439:1 27450:1 27454:1 27456:1 27465:1 27469:6 27475:1 27491:1 27504:1 27505:2 27520:4 27546:1 27573:1 27591:1 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27815:1 27818:1 27860:1 27892:1 27919:1 27939:1 27952:1 27954:1 27999:1 28010:1 28011:1 28017:1 28024:1 28058:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28413:1 28418:1 28424:1 28426:2 28492:1 28535:1 28543:4 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:1 28671:1 28682:1 28694:1 28695:1 28701:2 28709:1 28718:1 28756:1 28760:4 28783:1 28796:1 28808:1
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:1 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 330:1 366:2 390:2 397:2 411:2 420:1 448:1 449:3 457:1 467:2 480:1 512:1 533:1 558:1 605:2 635:1 650:1 695:1 732:1 791:1 796:1 811:1 867:4 872:1 885:1 890:4 895:1 911:1 919:1 947:1 957:1 982:1 989:1 994:1 1026:1 1027:1 1035:1 1059:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1190:1 1196:1 1201:2 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:1 1331:3 1341:1 1345:1 1361:1 1404:4 1450:1 1452:1 1456:1 1460:4 1463:1 1482:1 1513:1 1533:1 1534:1 1542:2 1559:1 1563:2 1566:1 1571:1 1575:1 1630:1 1631:1 1664:2 1667:1 1677:4 1695:1 1701:1 1703:1 1704:1 1726:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:1 1824:1 1827:1 1842:2 1868:2 1869:1 1876:1 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2202:1 2229:1 2230:1 2238:1 2240:2 2241:2 2245:3 2249:2 2252:2 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:4 2266:1 2268:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:4 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2704:4 2710:1 2729:1 2755:2 2758:1 2766:2 2775:1 2819:1 2827:1 2869:4 2878:1 2949:1 2955:1 2962:1 2963:1 2975:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3112:1 3116:1 3159:1 3166:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:2 3300:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3510:2 3556:1 3561:1 3567:1 3583:1 3588:1 3623:1 3630:4 3635:1 3641:1 3656:1 3660:1 3706:2 3731:1 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3870:1 3879:2 3886:1 3911:1 3921:1 3933:1 3945:1 3950:1 3954:2 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4204:1 4209:1 4211:1 4217:1 4248:1 4260:1 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4452:1 4462:1 4463:1 4470:1 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4681:1 4781:1 4795:6 4796:1 4832:1 4846:1 4906:5 4922:3 4923:2 4926:1 4931:1 4940:2 4943:2 4949:1 4951:1 4953:1 4971:1 4983:1 5078:1 5141:2 5179:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5447:1 5464:2 5470:1 5495:1 5513:1 5516:1 5524:1 5565:1 5592:1 5615:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:5 5915:1 5934:1 5937:1 5946:1 5947:1 5954:1 5955:1 5973:1 6001:1 6024:1 6028:1 6061:1 6077:2 6099:1 6120:1 6148:2 6155:1 6158:1 6163:1 6212:1 6227:3 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:3 6254:7 6258:2 6311:2 6387:2 6398:1 6403:2 6434:1 6501:1 6515:1 6528:1 6537:2 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6654:3 6679:1 6683:1 6690:1 6727:1 6783:1 6786:1 6810:1 6831:1 6876:1 6948:2 6951:2 6976:1 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:2 7089:1 7238:1 7248:2 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:1 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7464:1 7469:1 7471:1 7483:1 7504:1 7517:21 7532:4 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7712:1 7715:1 7723:1 7734:1 7741:1 7794:1 7829:2 7884:1 7962:2 7979:4 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:1 8351:1 8358:1 8362:1 8365:1 8366:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8434:1 8437:2 8447:1 8458:1 8477:2 8490:1 8523:1 8602:1 8653:2 8660:1 8662:1 8736:2 8754:1 8757:1 8769:2 8795:1 8822:1 8843:1 8844:2 8846:1 8869:1 8875:1 8901:1 8923:4 8958:1 8966:2 8982:1 8984:1 9001:1 9010:2 9012:2 9014:1 9037:1 9052:1 9055:2 9082:1 9102:1 9103:1 9136:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:4 9273:1 9274:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:2 9454:1 9460:1 9490:5 9506:3 9512:1 9517:1 9543:1 9616:1 9646:3 9699:1 9700:3 9703:1 9706:1 9715:1 9748:1 9753:2 9813:1 9822:4 9824:1 9826:1 9835:1 9869:1 9882:1 9886:1 9917:1 9968:1 9988:1 9996:1 10017:1 10021:1 10022:1 10059:1 10070:1 10093:2 10101:2 10197:1 10204:2 10244:2 10268:1 10298:1 10305:3 10310:1 10320:2 10372:1 10404:1 10419:1 10428:5 10438:1 10439:1 10462:2 10492:1 10496:1 10498:1 10532:1 10682:2 10685:2 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10825:1 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10924:1 10931:1 10933:1 10973:1 10982:1 10983:2 11056:1 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:4 11196:1 11208:1 11224:2 11230:1 11231:1 11243:1 11256:2 11307:1 11323:1 11328:1 11341:1 11346:1 11366:1 11371:3 11419:2 11420:1 11425:1 11433:1 11440:1 11443:1 11444:1 11447:1 11449:1 11461:2 11500:1 11501:1 11504:1 11529:1 11534:1 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11855:4 11879:1 11880:1 11896:2 11905:2 11918:2 11921:1 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:2 12067:1 12077:1 12195:1 12211:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12526:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12905:1 12940:1 13012:1 13021:2 13025:1 13054:2 13082:2 13095:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:3 13322:1 13342:1 13344:2 13347:1 13350:4 13368:2 13387:1 13401:1 13414:1 13424:1 13462:1 13477:3 13481:1 13488:1 13489:2 13491:1 13497:1 13527:1 13564:1 13578:1 13581:2 13593:1 13599:1 13606:1 13619:3 13623:1 13631:3 13648:2 13649:1 13654:1 13675:1 13686:1 13752:1 13755:1 13791:2 13795:2 13835:1 13849:2 13861:1 13955:1 13956:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14058:1 14068:1 14075:1 14099:1 14135:2 14144:1 14155:1 14164:1 14169:1 14172:1 14180:1 14184:1 14196:1 14213:1 14233:1 14253:4 14278:1 14296:1 14313:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14436:1 14487:1 14513:1 14528:1 14532:2 14533:1 14563:1 14633:1 14637:2 14645:2 14655:1 14659:1 14725:1 14736:1 14786:1 14798:1 14811:1 14822:1 14832:1 14868:1 14881:1 14890:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14941:1 14958:1 14986:2 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15146:1 15162:1 15178:1 15207:1 15234:3 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15349:1 15400:1 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:2 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15692:1 15722:1 15730:1 15742:2 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 16031:1 16048:2 16060:4 16071:1 16088:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16454:1 16482:1 16495:1 16498:1 16519:1 16554:1 16563:1 16595:1 16622:1 16627:1 16655:1 16664:1 16686:1 16688:1 16714:1 16739:1 16749:1 16769:1 16817:1 16833:1 16836:2 16856:1 16861:2 16947:1 16956:1 16960:1 16964:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17044:1 17046:1 17066:2 17095:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17240:1 17247:2 17255:1 17266:1 17275:2 17284:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17388:2 17390:1 17391:1 17419:1 17432:1 17434:1 17436:1 17462:1 17483:1 17487:1 17564:1 17570:1 17573:1 17603:1 17628:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17785:2 17822:1 17835:4 17889:1 17964:1 17985:1 17993:5 18002:1 18004:1 18007:1 18023:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:1226 18226:1 18245:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18536:1 18567:1 18598:1 18667:1 18694:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:1 19029:6 19072:1 19081:1 19114:1 19124:2 19127:1 19210:1 19217:1 19225:2 19245:1 19260:1 19272:1 19278:1 19282:1 19301:1 19319:2 19327:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19419:1 19429:1 19436:2 19482:1 19502:1 19527:1 19531:1 19533:1 19601:3 19645:1 19670:3 19680:3 19687:1 19689:1 19717:1 19722:1 19746:2 19748:1 19758:1 19764:1 19769:1 19770:1 19806:1 19823:1 19829:1 19840:2 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 20024:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20277:1 20280:1 20306:1 20310:1 20314:1 20321:1 20350:2 20384:2 20399:1 20409:2 20411:1 20436:2 20438:2 20448:1 20510:1 20512:1 20556:1 20582:1 20604:2 20706:1 20712:1 20752:1 20803:2 20858:1 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20956:1 20973:1 20990:1 20994:1 21009:1 21055:1 21097:1 21137:2 21159:2 21168:1 21175:1 21179:1 21185:5 21186:1 21198:2 21210:1 21238:2 21244:1 21248:1 21251:1 21294:2 21338:1 21348:3 21352:1 21361:1 21364:1 21379:1 21380:3 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21498:1 21547:1 21563:1 21565:1 21566:1 21588:2 21593:1 21616:1 21622:1 21632:1 21682:2 21698:1 21707:1 21725:1 21761:1 21774:1 21781:2 21788:1 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22031:1 22039:1 22040:1 22052:1 22057:1 22065:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22265:4 22270:1 22275:1 22279:1 22324:1 22347:1 22365:2 22402:2 22420:2 22433:1 22437:1 22458:1 22490:2 22512:1 22546:1 22566:4 22584:1 22589:1 22643:1 22727:1 22737:1 22777:1 22781:2 22791:1 22796:1 22809:2 22818:2 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:1 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23001:1 23016:1 23031:1 23037:2 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23335:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:1 23493:1 23502:1 23527:1 23558:1 23594:1 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23862:2 23870:1 23876:2 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24089:1 24110:1 24119:1 24124:1 24150:1 24152:1 24174:1 24180:2 24183:1 24185:1 24198:1 24202:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:1 24665:1 24673:2 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24801:1 24834:1 24851:1 24854:3 24867:2 24871:1 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24928:2 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:1 25371:1 25406:1 25435:1 25441:1 25467:2 25472:1 25476:1 25478:1 25484:1 25495:1 25497:2 25519:1 25550:2 25552:1 25561:1 25619:5 25655:1 25660:2 25673:1 25692:1 25699:1 25740:2 25750:1 25757:1 25777:1 25825:1 25848:2 25851:1 25867:1 25873:1 25910:3 25929:3 25953:1 25960:1 25962:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:1 26290:2 26293:1 26302:1 26349:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26615:1 26644:1 26658:2 26664:1 26683:1 26684:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:1 26759:1 26794:1 26801:3 26804:1 26809:3 26811:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26960:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:1 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27308:1 27312:3 27341:1 27353:1 27361:1 27378:1 27389:1 27393:2 27431:1 27433:1 27439:1 27450:1 27454:1 27456:1 27465:1 27469:7 27475:1 27491:1 27504:1 27505:4 27520:4 27546:1 27573:1 27591:1 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27815:1 27818:1 27860:1 27880:1 27892:1 27919:1 27939:1 27952:1 27954:1 27999:1 28010:1 28011:1 28017:1 28024:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28413:1 28418:1 28424:1 28426:2 28492:1 28535:1 28543:4 28544:1 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:1 28671:1 28682:1 28694:1 28695:1 28701:2 28709:1 28718:1 28756:1 28760:4 28769:1 28783:1 28796:1 28808:1
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:2 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 330:1 352:1 366:2 390:2 397:2 411:2 412:1 420:1 448:1 449:3 457:1 467:2 480:1 512:1 533:1 558:1 605:2 635:1 650:1 692:1 695:1 732:1 791:1 796:1 811:1 867:4 872:1 885:1 890:4 895:1 911:1 915:1 919:1 947:1 954:1 957:1 982:1 989:1 994:1 1026:1 1027:1 1035:1 1059:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1190:1 1191:1 1196:1 1201:2 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:1 1331:3 1341:1 1345:1 1361:1 1404:4 1450:1 1452:1 1456:1 1460:5 1463:1 1482:1 1513:1 1533:1 1534:1 1542:2 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:1 1664:2 1667:1 1677:4 1689:1 1695:1 1701:1 1703:1 1704:1 1726:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:2 1824:1 1827:1 1842:2 1868:2 1869:1 1876:2 1880:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2102:1 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2202:1 2229:1 2230:1 2238:1 2240:2 2241:2 2245:3 2249:2 2252:2 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2359:1 2372:1 2379:1 2407:1 2440:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:4 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2704:4 2710:1 2729:1 2731:1 2755:2 2758:1 2766:2 2775:1 2819:1 2827:1 2869:4 2878:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3112:1 3116:1 3159:1 3166:1 3188:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:3 3300:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3510:2 3554:1 3556:1 3561:1 3567:1 3583:1 3588:1 3606:1 3623:1 3630:4 3635:1 3641:1 3656:1 3660:1 3706:2 3731:1 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3867:1 3870:1 3879:2 3886:1 3906:1 3911:1 3921:1 3933:1 3945:1 3950:2 3954:2 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4204:1 4209:1 4211:1 4217:1 4248:1 4260:1 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4452:1 4462:1 4463:1 4470:1 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4681:1 4706:1 4781:1 4795:6 4796:1 4832:2 4846:1 4906:5 4922:3 4923:2 4926:1 4931:1 4940:2 4943:2 4948:1 4949:1 4951:1 4953:1 4971:1 4983:1 5078:1 5141:2 5179:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5447:1 5464:2 5470:1 5495:1 5513:1 5516:1 5524:1 5565:1 5592:1 5615:1 5621:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:5 5915:1 5934:1 5937:1 5946:1 5947:1 5954:1 5955:1 5973:1 6001:1 6024:1 6028:1 6061:1 6077:2 6099:1 6120:1 6148:2 6155:1 6158:1 6163:1 6212:1 6227:4 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:3 6254:7 6258:2 6311:2 6387:2 6398:1 6403:2 6434:1 6501:1 6515:1 6528:1 6537:2 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6654:3 6679:1 6683:1 6690:1 6727:1 6783:1 6786:1 6810:1 6831:1 6876:1 6948:2 6951:2 6976:1 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:2 7089:1 7179:1 7238:1 7248:2 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:1 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7464:1 7469:1 7471:1 7483:1 7504:1 7517:23 7532:4 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7712:1 7715:1 7723:1 7734:1 7741:1 7794:1 7829:2 7884:1 7962:2 7979:4 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:1 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8434:1 8437:2 8447:1 8458:1 8477:2 8490:1 8523:1 8602:1 8653:2 8660:1 8662:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8875:1 8901:1 8923:4 8958:1 8966:2 8982:1 8984:1 9001:1 9010:2 9012:3 9014:1 9037:1 9052:1 9055:2 9082:1 9084:1 9102:1 9103:2 9136:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:4 9273:1 9274:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:2 9454:1 9460:1 9462:1 9490:5 9506:3 9510:1 9512:1 9517:1 9543:1 9616:1 9646:3 9699:1 9700:3 9703:1 9706:1 9715:1 9748:1 9753:2 9813:1 9822:4 9824:1 9826:1 9835:1 9869:1 9882:1 9886:1 9917:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10070:1 10093:2 10101:2 10197:1 10204:2 10244:2 10268:1 10280:1 10298:1 10305:3 10310:1 10320:2 10372:1 10404:1 10419:1 10428:5 10438:1 10439:1 10462:2 10492:1 10496:1 10498:1 10532:1 10682:2 10685:3 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10825:1 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10924:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:1 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:1 11152:5 11196:1 11208:1 11224:2 11230:1 11231:1 11243:1 11256:2 11307:1 11323:1 11328:1 11335:1 11341:1 11346:1 11366:1 11371:4 11419:2 11420:1 11425:1 11433:1 11440:1 11443:1 11444:1 11447:1 11449:1 11461:2 11500:1 11501:1 11504:1 11529:1 11534:1 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11833:1 11855:4 11877:1 11879:1 11880:1 11896:2 11905:2 11918:2 11921:1 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:2 12067:1 12077:1 12195:1 12211:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12687:1 12694:1 12726:1 12755:1 12756:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12905:1 12940:1 13011:1 13012:1 13021:2 13025:1 13054:2 13082:2 13095:1 13100:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13342:1 13344:2 13347:1 13350:4 13368:2 13387:1 13401:1 13414:1 13424:1 13462:1 13477:3 13481:2 13488:1 13489:2 13491:1 13497:1 13527:2 13537:1 13564:1 13578:1 13581:2 13593:1 13599:1 13606:1 13619:3 13623:1 13631:3 13648:2 13649:1 13654:1 13675:1 13679:1 13686:1 13752:1 13755:1 13791:2 13795:2 13835:1 13849:2 13861:1 13955:1 13956:1 13969:1 13970:1 13972:1 13992:1 14002:1 14021:1 14058:1 14068:1 14075:1 14099:1 14135:2 14144:1 14155:1 14164:2 14169:1 14172:1 14180:1 14184:1 14196:1 14213:2 14233:1 14253:4 14278:1 14296:1 14313:1 14329:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14415:1 14436:1 14487:1 14513:1 14528:1 14532:2 14533:1 14563:1 14633:1 14637:2 14645:2 14655:1 14659:1 14725:1 14736:1 14769:1 14786:1 14798:1 14811:1 14822:2 14832:1 14868:1 14881:1 14887:1 14890:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14941:1 14958:1 14986:2 15002:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15146:1 15162:1 15178:1 15207:1 15234:4 15245:1 15252:1 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15349:1 15400:2 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:2 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15692:1 15722:1 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 16031:1 16048:2 16060:4 16071:1 16088:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16595:1 16622:1 16627:1 16655:1 16664:1 16686:1 16688:1 16714:1 16739:1 16749:1 16769:1 16817:1 16833:1 16836:2 16856:1 16861:2 16947:1 16950:1 16956:1 16960:1 16964:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17044:1 17046:1 17066:2 17095:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17240:1 17247:2 17255:1 17266:1 17275:2 17284:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17388:2 17390:1 17391:1 17419:1 17432:1 17434:1 17436:1 17462:1 17483:1 17487:1 17537:1 17564:1 17570:1 17573:1 17603:1 17628:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17785:2 17822:1 17835:4 17889:1 17964:1 17985:1 17990:1 17993:5 18002:1 18004:1 18007:1 18023:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:1332 18226:1 18245:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18536:1 18567:1 18598:1 18667:1 18694:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:1 19029:6 19072:1 19081:1 19114:1 19124:2 19127:1 19210:1 19217:1 19225:2 19245:1 19260:1 19272:1 19278:1 19282:1 19301:1 19319:2 19327:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19419:1 19429:1 19436:2 19482:1 19502:1 19527:1 19531:1 19533:1 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19717:1 19722:1 19726:1 19746:2 19748:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19823:1 19829:1 19840:2 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 20010:1 20024:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20384:2 20399:1 20409:2 20411:1 20424:1 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20556:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:1 20803:2 20858:1 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20956:1 20973:1 20990:1 20994:1 21009:1 21055:1 21097:1 21137:2 21159:2 21168:1 21175:1 21179:1 21185:5 21186:1 21198:2 21210:1 21238:2 21244:1 21248:1 21251:1 21294:2 21338:1 21348:3 21352:1 21361:1 21364:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21498:1 21547:1 21563:1 21565:2 21566:1 21588:2 21593:1 21616:1 21622:1 21632:1 21682:2 21698:1 21707:1 21725:1 21761:1 21774:1 21781:2 21788:1 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22031:1 22039:1 22040:1 22052:1 22057:1 22065:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22171:1 22211:1 22265:4 22270:1 22275:1 22279:1 22324:1 22347:1 22365:2 22402:2 22420:2 22433:1 22437:1 22458:1 22490:2 22512:1 22546:1 22566:4 22584:1 22589:1 22643:1 22727:1 22737:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22818:2 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:2 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23001:1 23016:1 23031:1 23037:2 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23335:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:3 23493:1 23502:1 23527:1 23528:1 23542:1 23558:1 23594:1 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23862:2 23870:1 23876:2 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24037:1 24078:1 24089:1 24110:1 24119:1 24124:1 24150:1 24152:1 24162:1 24174:1 24180:2 24183:1 24185:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:1 24665:1 24673:2 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24801:1 24834:1 24851:1 24854:3 24867:2 24871:1 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24928:2 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:1 25371:1 25406:1 25435:1 25441:1 25467:2 25472:1 25476:1 25478:1 25484:1 25495:1 25497:2 25519:1 25550:2 25552:1 25561:1 25599:1 25619:5 25655:1 25660:2 25673:1 25692:1 25699:1 25740:2 25750:1 25757:1 25777:1 25825:1 25848:2 25851:1 25867:1 25873:1 25910:4 25929:3 25953:1 25960:1 25962:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:1 26290:2 26293:1 26302:1 26349:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26615:1 26644:1 26658:2 26664:1 26683:1 26684:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:1 26759:1 26794:1 26801:3 26804:1 26809:3 26811:1 26816:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26960:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:1 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27308:1 27312:3 27341:1 27353:1 27361:1 27378:1 27389:1 27393:2 27415:1 27431:1 27433:1 27439:1 27450:2 27454:1 27456:1 27465:1 27469:7 27475:1 27491:1 27504:1 27505:4 27520:4 27546:1 27573:1 27591:1 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27815:1 27818:1 27860:1 27871:1 27880:1 27892:1 27910:1 27919:1 27939:1 27952:1 27954:1 27991:1 27999:1 28010:1 28011:1 28017:2 28024:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28340:1 28413:1 28418:1 28422:1 28424:1 28426:2 28492:1 28535:1 28543:4 28544:1 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:2 28671:1 28682:1 28694:2 28695:1 28701:2 28709:1 28711:1 28718:1 28756:1 28760:4 28769:1 28783:1 28796:1 28808:1 28811:1
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:2 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 328:1 330:1 352:1 366:2 390:2 397:2 411:2 412:1 420:1 448:1 449:3 457:1 467:2 480:1 512:1 533:1 558:1 605:2 635:1 650:1 692:1 695:1 732:1 791:1 796:1 811:1 867:4 872:1 885:1 890:4 895:1 911:1 915:1 919:1 928:1 947:1 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1035:1 1059:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1190:1 1191:1 1196:1 1201:2 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:4 1450:1 1452:1 1453:1 1456:1 1460:5 1463:1 1464:1 1482:1 1513:1 1533:1 1534:1 1542:2 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:1 1664:2 1667:1 1677:4 1689:1 1695:1 1701:1 1703:1 1704:1 1726:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:2 1824:1 1827:1 1842:2 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1987:1 1989:2 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2065:1 2078:1 2102:1 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2202:2 2229:1 2230:1 2238:2 2240:2 2241:2 2245:3 2249:2 2252:2 2253:1 2254:1 2255:1 2257:1 2259:1 2262:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2359:1 2372:1 2379:1 2407:2 2440:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:4 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2704:4 2710:1 2729:1 2731:1 2755:2 2758:1 2766:2 2775:1 2819:1 2827:1 2841:1 2869:4 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3030:1 3037:1 3051:1 3084:1 3085:1 3112:1 3116:1 3159:1 3166:1 3188:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:3 3300:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3554:1 3556:1 3561:1 3567:1 3583:1 3588:1 3606:1 3623:1 3630:4 3635:1 3641:1 3656:1 3660:1 3706:2 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3867:1 3870:1 3879:2 3884:1 3886:1 3906:1 3911:1 3921:1 3933:1 3945:1 3950:2 3954:2 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4204:1 4209:1 4211:1 4217:1 4248:1 4260:1 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4452:1 4462:1 4463:1 4470:1 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4652:1 4681:1 4706:1 4781:1 4795:7 4796:1 4832:2 4846:1 4906:5 4922:3 4923:2 4926:1 4931:1 4935:1 4938:1 4940:2 4943:2 4948:1 4949:1 4951:1 4953:1 4971:1 4983:1 5010:1 5078:1 5141:2 5179:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5447:1 5464:2 5470:1 5495:1 5513:1 5516:1 5524:1 5539:1 5565:1 5592:1 5615:1 5621:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:5 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:2 6061:1 6077:2 6099:1 6120:1 6148:2 6155:1 6158:1 6163:1 6212:1 6227:4 6230:1 6232:1 6236:1 6239:1 6247:1 6249:1 6253:3 6254:7 6258:2 6311:2 6387:2 6398:1 6403:2 6434:1 6501:1 6515:1 6528:1 6537:2 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6654:3 6679:1 6683:1 6690:1 6727:1 6783:1 6786:1 6810:1 6831:1 6876:1 6948:2 6951:2 6976:1 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:2 7080:1 7089:1 7179:1 7238:1 7248:3 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:1 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7463:1 7464:1 7469:1 7471:1 7483:1 7504:2 7517:25 7532:5 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7712:1 7715:1 7723:2 7734:1 7741:1 7794:1 7797:1 7829:2 7884:1 7962:2 7979:4 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:1 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8434:1 8437:2 8447:1 8458:1 8477:2 8490:1 8494:1 8523:1 8602:1 8637:1 8653:2 8660:1 8662:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8875:1 8901:1 8923:4 8938:1 8958:1 8966:2 8982:1 8984:1 9001:1 9010:3 9012:3 9014:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:1 9090:1 9102:1 9103:2 9136:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:5 9273:1 9274:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:2 9454:1 9460:1 9462:1 9490:5 9506:3 9510:1 9512:1 9517:1 9543:1 9616:1 9646:4 9699:1 9700:3 9703:1 9706:1 9715:1 9748:1 9753:2 9813:1 9822:4 9824:1 9826:2 9835:1 9853:1 9869:1 9882:1 9886:1 9917:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10070:1 10093:2 10101:2 10197:1 10204:2 10244:2 10268:1 10280:1 10298:1 10305:3 10310:1 10320:2 10372:1 10404:1 10419:1 10428:5 10438:1 10439:1 10462:2 10492:1 10496:1 10498:1 10532:1 10682:2 10685:3 10692:2 10701:1 10704:1 10706:1 10737:1 10761:1 10793:1 10810:3 10825:1 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10920:1 10924:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:1 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11152:5 11196:1 11208:1 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11307:1 11323:1 11328:1 11335:1 11341:1 11346:1 11366:1 11371:4 11419:2 11420:1 11425:1 11433:1 11440:2 11443:1 11444:1 11447:1 11449:2 11461:2 11500:1 11501:1 11504:1 11529:1 11534:1 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11666:1 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11833:1 11852:1 11855:5 11877:1 11879:1 11880:1 11896:2 11905:2 11918:2 11921:1 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:2 12043:1 12067:1 12077:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:1 12905:1 12940:1 13011:1 13012:1 13021:2 13025:1 13054:2 13082:2 13095:1 13100:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13342:1 13344:2 13347:1 13350:5 13351:1 13368:2 13387:1 13401:1 13414:1 13424:1 13462:1 13477:3 13481:2 13488:1 13489:3 13491:1 13497:1 13527:2 13537:1 13552:1 13564:1 13578:1 13581:2 13593:1 13599:1 13606:1 13619:4 13623:1 13631:3 13648:2 13649:1 13654:1 13675:1 13679:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13795:2 13835:1 13849:2 13861:1 13955:1 13956:1 13969:1 13970:2 13972:1 13992:1 14002:1 14021:1 14058:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:1 14172:1 14180:1 14184:1 14196:1 14213:2 14233:1 14253:4 14278:1 14296:1 14313:1 14329:1 14334:1 14337:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14415:1 14436:1 14487:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14633:1 14637:2 14645:2 14655:1 14659:1 14725:1 14736:1 14769:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14868:1 14881:1 14887:1 14890:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14941:1 14958:1 14986:2 15002:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15162:1 15178:1 15207:1 15234:4 15245:1 15252:1 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15349:1 15400:2 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:2 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15692:1 15722:1 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 16031:1 16048:2 16060:4 16071:1 16088:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16591:1 16595:1 16622:1 16627:1 16655:1 16664:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:1 16769:1 16817:1 16833:1 16836:2 16856:1 16861:2 16932:1 16947:1 16950:1 16956:1 16960:1 16964:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17044:1 17046:1 17066:2 17095:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17240:1 17247:2 17255:1 17266:1 17275:2 17284:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17388:2 17390:1 17391:1 17419:1 17432:1 17434:1 17436:1 17462:1 17483:1 17487:1 17537:1 17564:1 17570:1 17573:1 17603:1 17628:1 17639:2 17649:2 17669:1 17670:1 17695:1 17700:1 17714:1 17720:1 17763:1 17785:2 17822:1 17835:4 17865:1 17889:1 17964:1 17985:1 17990:1 17993:5 18002:1 18004:1 18007:1 18023:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18203:1 18218:1 18223:1408 18226:1 18245:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18536:1 18567:1 18598:1 18667:1 18694:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:1 19029:7 19072:1 19081:1 19114:1 19124:2 19127:1 19210:1 19217:1 19225:2 19245:1 19260:1 19272:1 19278:1 19282:1 19301:1 19319:2 19327:1 19328:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19419:1 19429:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:1 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19717:1 19722:1 19726:1 19746:2 19748:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19823:1 19829:1 19840:2 19843:1 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 20010:1 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20384:2 20393:1 20399:1 20409:2 20411:1 20424:1 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20556:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:1 20803:2 20842:1 20858:1 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20956:1 20973:1 20990:1 20994:1 21009:1 21055:1 21097:1 21137:2 21159:2 21168:1 21175:1 21179:1 21185:5 21186:1 21198:2 21210:1 21238:2 21244:1 21248:1 21251:1 21294:2 21338:1 21348:3 21352:1 21361:1 21364:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21486:1 21498:1 21547:1 21563:1 21565:2 21566:1 21588:2 21593:1 21616:1 21622:1 21632:1 21658:1 21682:2 21698:1 21707:1 21714:1 21717:1 21725:1 21761:1 21765:1 21774:1 21781:2 21788:1 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22031:1 22039:1 22040:1 22052:1 22057:1 22065:1 22080:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:1 22165:1 22169:1 22171:1 22211:1 22265:5 22270:1 22275:1 22279:1 22324:1 22347:1 22365:2 22402:2 22420:2 22433:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:1 22566:4 22584:1 22589:1 22643:1 22727:1 22737:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22818:2 22847:1 22860:1 22861:1 22870:1 22871:1 22882:1 22919:2 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23001:1 23016:1 23031:1 23037:2 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23335:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:3 23493:1 23502:1 23527:1 23528:1 23542:1 23558:1 23580:1 23594:1 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23862:2 23870:1 23876:2 23904:6 23942:1 23994:1 24002:1 24009:1 24015:1 24022:2 24037:1 24078:1 24089:1 24110:1 24119:1 24124:1 24150:1 24152:1 24162:1 24174:1 24180:2 24183:1 24185:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:1 24665:1 24673:2 24689:1 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24800:1 24801:1 24817:1 24834:1 24851:1 24854:3 24867:2 24871:1 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24928:2 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:1 25371:1 25406:1 25435:1 25441:1 25467:2 25472:1 25476:1 25478:1 25484:1 25495:1 25497:2 25519:1 25550:2 25552:1 25561:1 25599:1 25619:5 25655:1 25660:2 25673:1 25692:1 25699:1 25740:2 25750:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25867:1 25873:1 25910:4 25929:3 25937:1 25953:1 25960:1 25962:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26290:2 26293:2 26302:1 26349:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:1 26609:1 26613:1 26615:1 26644:1 26658:3 26664:1 26683:1 26684:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:3 26804:1 26809:3 26811:1 26816:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26960:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:1 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27308:1 27312:3 27341:1 27353:1 27361:1 27378:1 27389:1 27393:2 27404:1 27415:1 27431:1 27433:1 27439:1 27450:2 27454:1 27456:1 27465:1 27469:7 27475:1 27491:1 27504:1 27505:4 27520:5 27546:1 27573:1 27591:1 27598:1 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27799:1 27815:1 27818:1 27846:1 27860:1 27871:1 27880:1 27892:1 27910:2 27919:1 27939:1 27952:1 27954:1 27991:1 27999:1 28010:1 28011:1 28017:2 28024:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28325:1 28340:1 28413:1 28418:1 28422:1 28424:1 28426:2 28492:1 28535:1 28543:4 28544:1 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:2 28671:1 28682:1 28694:2 28695:1 28701:2 28709:1 28711:1 28718:1 28756:1 28760:4 28769:1 28783:1 28796:1 28808:1 28811:2
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:2 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 328:1 330:1 352:1 366:3 390:2 397:3 411:2 412:1 420:1 448:1 449:3 457:1 467:2 480:1 512:1 533:1 558:1 605:2 635:1 650:1 692:1 695:1 732:1 791:1 796:1 811:1 830:1 867:4 872:1 885:1 890:4 895:1 911:1 915:1 919:1 928:1 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1035:1 1059:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1190:1 1191:1 1196:1 1201:2 1214:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:4 1450:1 1452:1 1453:1 1456:1 1460:5 1463:1 1464:1 1482:1 1509:1 1513:1 1533:1 1534:2 1542:2 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:1 1664:2 1667:1 1677:4 1689:1 1695:1 1701:1 1703:1 1704:1 1726:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:2 1824:1 1827:1 1842:2 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1987:1 1989:3 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2061:1 2065:1 2078:1 2102:1 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2202:2 2229:1 2230:1 2238:2 2240:2 2241:2 2245:4 2249:2 2252:2 2253:1 2254:1 2255:1 2257:2 2259:1 2262:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2359:1 2372:1 2379:1 2407:2 2440:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:4 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:3 2775:1 2819:1 2827:1 2841:1 2869:4 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3112:1 3116:1 3159:1 3166:1 3188:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:3 3300:1 3354:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3554:1 3556:1 3561:1 3567:1 3583:1 3588:1 3606:1 3623:1 3630:4 3635:1 3641:1 3656:1 3660:1 3706:2 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3867:1 3870:1 3879:2 3884:1 3886:1 3906:1 3911:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:1 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4452:1 4462:1 4463:1 4470:1 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4652:1 4681:1 4706:1 4781:1 4795:7 4796:1 4832:2 4846:1 4906:5 4922:3 4923:2 4926:1 4931:1 4935:1 4938:1 4940:2 4943:2 4948:1 4949:1 4951:1 4953:1 4971:1 4983:1 5010:1 5078:1 5141:2 5179:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5447:1 5458:1 5464:2 5470:1 5495:1 5513:1 5516:1 5524:1 5539:1 5565:1 5592:1 5615:2 5621:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:5 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:2 6061:1 6077:2 6099:1 6120:1 6148:2 6155:1 6158:1 6163:1 6212:1 6227:4 6230:1 6232:1 6236:2 6239:1 6247:1 6249:1 6253:3 6254:7 6258:2 6311:2 6387:2 6398:1 6403:2 6434:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6654:3 6679:1 6683:1 6690:1 6727:1 6783:1 6786:1 6810:1 6831:1 6876:1 6948:2 6951:2 6976:1 7013:1 7024:1 7047:1 7056:1 7062:1 7072:1 7073:2 7080:1 7089:1 7179:1 7222:1 7238:1 7248:3 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:1 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7463:1 7464:1 7469:1 7471:1 7483:1 7504:2 7517:27 7532:5 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7712:1 7715:1 7723:2 7734:1 7741:1 7753:1 7794:1 7797:1 7829:2 7884:1 7962:2 7979:4 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:1 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8434:1 8437:2 8447:1 8458:1 8477:2 8490:1 8494:1 8523:1 8602:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8875:1 8901:1 8923:4 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:1 9001:1 9010:3 9012:3 9014:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:1 9090:1 9102:1 9103:2 9136:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:6 9273:1 9274:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:2 9454:1 9460:1 9462:1 9490:5 9506:3 9510:1 9512:1 9517:1 9543:1 9616:1 9646:4 9699:1 9700:3 9703:1 9706:1 9715:1 9748:1 9753:2 9813:1 9822:4 9824:1 9826:2 9835:1 9853:1 9869:1 9882:1 9886:1 9917:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10070:1 10093:2 10101:2 10176:1 10197:1 10204:2 10244:2 10268:1 10280:1 10298:1 10303:1 10305:3 10310:1 10320:2 10372:1 10404:1 10419:1 10428:5 10438:1 10439:1 10462:2 10492:1 10496:1 10498:1 10532:1 10682:2 10685:3 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:1 10793:1 10810:3 10825:1 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10920:1 10924:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:1 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11152:5 11196:1 11208:1 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11273:1 11307:1 11323:1 11328:1 11335:1 11341:1 11346:2 11366:1 11371:4 11419:2 11420:1 11425:1 11433:1 11440:2 11443:1 11444:1 11447:1 11449:2 11461:2 11500:1 11501:1 11504:1 11520:1 11529:1 11534:1 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11666:1 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11764:1 11833:1 11852:1 11855:5 11877:1 11879:1 11880:1 11896:2 11905:2 11918:2 11921:1 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:2 12043:1 12067:1 12077:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:1 12905:1 12940:1 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:2 13095:1 13100:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13342:1 13344:2 13347:1 13350:6 13351:1 13368:2 13387:1 13401:1 13414:1 13424:1 13462:1 13477:3 13481:2 13488:1 13489:3 13491:1 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:1 13599:1 13606:1 13619:5 13623:1 13631:3 13648:2 13649:1 13654:1 13675:1 13679:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13795:2 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13992:1 14002:1 14021:1 14058:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:1 14172:1 14180:1 14184:1 14196:1 14213:2 14233:1 14253:4 14278:1 14296:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14415:1 14436:1 14487:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14633:1 14634:1 14637:2 14645:2 14655:1 14659:1 14725:1 14736:1 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14868:1 14881:1 14887:1 14890:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14941:1 14958:1 14986:2 15002:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15162:1 15178:1 15207:1 15234:4 15245:1 15252:1 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15349:1 15392:1 15400:2 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:2 15657:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15692:1 15722:1 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 16031:1 16048:2 16060:4 16071:1 16088:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:2 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16591:1 16595:1 16622:1 16627:1 16655:1 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:1 16769:1 16817:1 16833:1 16836:3 16856:1 16861:2 16932:1 16947:1 16950:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17044:1 17046:1 17066:2 17095:1 17152:1 17164:1 17175:1 17195:1 17199:1 17205:1 17221:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17388:2 17390:2 17391:1 17419:1 17432:1 17434:1 17436:1 17462:1 17483:1 17487:1 17537:1 17564:1 17570:1 17573:1 17603:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:1 17700:1 17714:1 17720:1 17763:1 17785:2 17822:1 17835:4 17865:1 17889:1 17964:1 17985:1 17990:1 17993:6 18002:1 18004:1 18007:1 18023:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18170:1 18203:1 18218:1 18223:1478 18226:1 18245:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18536:1 18567:1 18598:1 18667:1 18694:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:1 19029:7 19072:1 19081:1 19114:1 19124:3 19127:1 19210:1 19217:1 19225:2 19245:2 19260:1 19272:1 19278:1 19282:1 19301:1 19319:2 19327:1 19328:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:1 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19717:1 19722:1 19726:1 19746:2 19748:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19823:1 19829:1 19840:2 19843:1 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 20010:1 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20393:1 20399:1 20409:2 20411:1 20424:1 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20556:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:1 20803:2 20842:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20953:1 20956:1 20973:1 20990:1 20994:1 21009:1 21043:1 21055:1 21097:1 21137:2 21159:2 21168:1 21175:1 21179:1 21185:5 21186:1 21198:2 21210:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21338:1 21348:3 21352:1 21361:1 21364:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21486:1 21498:1 21547:1 21563:1 21565:2 21566:1 21588:2 21593:1 21616:1 21622:1 21632:1 21658:1 21682:2 21698:1 21707:1 21714:1 21717:1 21725:1 21761:1 21765:1 21774:1 21781:2 21788:1 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:1 21914:1 21917:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22031:1 22039:1 22040:1 22052:1 22057:1 22065:1 22080:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:5 22270:1 22275:1 22279:1 22287:1 22290:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:1 22566:5 22584:1 22589:1 22643:1 22727:1 22737:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22818:2 22847:1 22860:1 22861:1 22870:1 22871:1 22882:2 22919:2 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23001:1 23016:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23335:1 23353:1 23385:1 23414:1 23447:1 23478:1 23487:3 23493:1 23502:1 23527:1 23528:1 23542:1 23558:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23856:1 23862:2 23870:1 23876:2 23904:6 23942:1 23970:1 23994:1 24002:1 24009:1 24015:1 24022:2 24037:1 24078:1 24089:1 24110:1 24119:1 24124:1 24150:1 24152:1 24158:1 24162:1 24174:1 24180:2 24183:1 24185:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:2 24665:1 24673:2 24689:1 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24834:1 24851:1 24854:3 24867:2 24871:1 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24928:3 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25406:1 25435:1 25441:1 25467:2 25472:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:2 25552:1 25561:1 25599:1 25619:6 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25740:2 25750:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25867:1 25873:1 25910:4 25929:3 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26290:2 26293:2 26302:1 26349:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:2 26609:1 26613:1 26615:1 26644:1 26658:3 26664:1 26683:1 26684:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:3 26804:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26960:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27308:1 27312:3 27341:1 27353:1 27361:1 27378:1 27389:1 27393:2 27404:1 27415:1 27431:1 27433:1 27439:1 27450:2 27454:1 27456:1 27465:1 27469:7 27475:1 27491:1 27504:1 27505:4 27520:5 27546:1 27573:1 27591:1 27598:1 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27799:1 27815:1 27818:1 27846:1 27860:1 27871:1 27880:1 27892:1 27910:2 27919:1 27939:1 27952:1 27954:1 27991:1 27999:1 28010:1 28011:1 28017:2 28024:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28325:1 28340:1 28413:1 28418:1 28422:1 28424:1 28426:2 28492:1 28535:1 28543:4 28544:1 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:2 28671:1 28682:1 28694:2 28695:1 28701:2 28709:1 28711:1 28718:1 28756:1 28760:4 28769:1 28783:1 28796:1 28808:1 28811:2
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:2 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 328:1 330:1 352:1 366:3 390:2 397:3 411:2 412:1 420:1 448:1 449:3 457:1 467:2 480:1 512:1 533:1 558:1 605:2 611:1 635:1 650:1 692:1 695:2 697:1 732:1 741:1 791:1 796:1 811:1 830:1 867:4 872:1 876:1 885:1 890:4 895:1 911:1 915:1 919:1 928:1 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1035:1 1059:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1190:1 1191:1 1196:1 1201:2 1209:1 1214:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:5 1450:1 1452:1 1453:1 1456:1 1460:5 1463:1 1464:1 1482:1 1509:1 1513:1 1533:1 1534:2 1542:2 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:1 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:1 1704:1 1726:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:2 1824:1 1827:1 1842:2 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1987:1 1989:3 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2061:1 2065:1 2078:1 2102:1 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2202:2 2229:1 2230:1 2238:2 2240:2 2241:2 2245:4 2248:1 2249:2 2252:2 2253:1 2254:1 2255:1 2257:2 2259:1 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2359:1 2372:1 2379:1 2407:2 2440:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:4 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:3 2775:1 2819:1 2827:1 2841:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3116:1 3159:1 3166:1 3188:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:3 3300:1 3354:1 3366:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3554:1 3556:1 3561:1 3567:1 3583:1 3588:1 3606:1 3623:1 3630:4 3635:1 3641:1 3656:1 3660:1 3706:2 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3867:1 3870:1 3879:2 3884:1 3886:1 3906:1 3911:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:1 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4452:1 4462:1 4463:1 4470:1 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4652:1 4681:1 4706:1 4781:1 4795:7 4796:1 4832:2 4846:1 4906:5 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4938:1 4940:2 4943:2 4948:1 4949:1 4951:1 4953:1 4971:1 4983:1 5010:1 5035:1 5078:1 5141:2 5179:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5447:1 5458:1 5464:2 5470:1 5492:1 5495:1 5513:1 5516:1 5524:1 5539:1 5565:1 5592:1 5615:2 5621:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:5 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:2 6061:1 6077:2 6099:1 6120:1 6148:2 6155:1 6158:1 6163:1 6212:1 6227:4 6230:1 6232:1 6236:2 6239:1 6247:1 6249:1 6253:3 6254:7 6258:2 6305:1 6311:2 6387:2 6398:1 6403:2 6434:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6654:3 6679:1 6683:1 6686:1 6690:1 6727:1 6783:1 6786:1 6810:1 6831:1 6876:1 6948:2 6951:2 6976:1 7013:2 7024:1 7047:1 7056:1 7062:1 7072:1 7073:2 7080:1 7089:1 7179:1 7222:1 7238:1 7248:3 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:1 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:1 7483:1 7504:2 7517:28 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7712:1 7715:1 7723:2 7734:1 7741:1 7753:1 7794:1 7797:1 7829:2 7884:1 7962:2 7979:4 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:1 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:1 8477:2 8490:1 8494:1 8523:1 8602:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8875:1 8882:1 8901:1 8923:4 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 9001:1 9010:3 9012:3 9014:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:1 9090:1 9102:1 9103:2 9136:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:6 9273:1 9274:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:3 9454:1 9460:1 9462:1 9490:5 9506:3 9510:1 9512:1 9517:1 9543:1 9616:1 9646:4 9699:1 9700:3 9703:1 9706:1 9715:1 9748:1 9753:2 9813:1 9822:4 9824:1 9826:2 9835:1 9853:1 9869:1 9882:1 9886:1 9917:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10093:2 10101:2 10176:1 10197:1 10204:2 10244:2 10268:1 10273:1 10280:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:6 10438:1 10439:1 10462:2 10492:1 10496:1 10498:1 10532:1 10574:1 10682:2 10685:3 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:1 10793:1 10810:3 10825:1 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10920:1 10924:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:1 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11152:5 11196:1 11208:1 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11273:1 11307:1 11323:1 11328:1 11335:1 11341:1 11346:2 11366:1 11371:4 11419:2 11420:1 11425:1 11433:1 11440:2 11443:1 11444:1 11447:1 11449:2 11461:2 11500:1 11501:1 11504:1 11520:1 11529:1 11534:1 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11666:1 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11764:1 11833:1 11852:1 11855:5 11877:1 11879:1 11880:1 11896:2 11905:2 11918:2 11921:1 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:2 12043:1 12067:1 12077:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:1 12905:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:2 13095:1 13100:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13342:1 13344:2 13347:1 13350:6 13351:1 13368:2 13387:1 13401:1 13414:1 13424:1 13462:1 13477:3 13481:2 13488:1 13489:3 13491:1 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:1 13599:1 13606:1 13619:5 13623:1 13631:3 13648:2 13649:1 13654:1 13666:1 13675:1 13679:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13795:2 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13992:2 14002:1 14013:1 14021:1 14058:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:1 14172:1 14180:1 14184:1 14196:1 14213:2 14233:1 14253:4 14278:1 14296:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14415:1 14436:1 14487:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14633:1 14634:1 14637:2 14645:2 14655:1 14659:1 14681:1 14725:1 14736:1 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14941:1 14958:1 14986:2 15002:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15162:1 15178:1 15207:1 15234:4 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15349:1 15392:1 15400:2 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:2 15657:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15692:1 15722:1 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 16031:1 16048:2 16060:4 16071:1 16088:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:2 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16591:1 16595:1 16622:1 16627:1 16655:1 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:1 16758:1 16769:1 16817:1 16833:1 16836:3 16856:1 16861:2 16932:1 16947:1 16950:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17066:2 17095:1 17152:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17388:2 17390:2 17391:1 17419:1 17432:1 17434:1 17436:1 17462:1 17483:1 17487:1 17537:1 17564:1 17570:1 17573:1 17603:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17714:1 17720:1 17763:1 17785:2 17822:1 17835:4 17865:1 17889:1 17964:1 17985:1 17990:1 17993:6 18002:1 18004:1 18007:1 18023:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18170:1 18203:1 18218:1 18223:1521 18226:1 18245:1 18271:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18435:1 18536:1 18567:1 18598:1 18667:1 18694:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:1 19004:1 19029:7 19072:1 19081:1 19114:1 19124:3 19127:1 19210:1 19217:1 19225:2 19245:2 19260:1 19272:1 19278:1 19282:1 19301:1 19319:2 19327:1 19328:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:1 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19746:2 19748:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19823:1 19829:1 19840:2 19843:1 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 20010:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20393:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20556:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:2 20803:2 20842:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20946:1 20953:1 20956:1 20973:1 20990:1 20994:1 21009:1 21043:1 21055:1 21097:1 21137:2 21159:2 21168:1 21175:1 21179:1 21185:5 21186:1 21198:2 21210:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21486:1 21498:1 21547:1 21563:1 21565:2 21566:1 21588:2 21593:1 21616:1 21622:1 21632:1 21658:1 21682:2 21698:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:1 21774:1 21781:2 21788:1 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:2 21914:1 21917:1 21919:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22031:1 22039:1 22040:1 22052:1 22057:1 22065:1 22080:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:5 22270:1 22275:1 22279:1 22287:1 22290:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:1 22566:5 22584:1 22589:1 22643:1 22727:1 22737:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22882:2 22919:2 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23001:1 23016:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23335:1 23353:1 23385:1 23393:1 23414:1 23447:1 23478:1 23487:3 23493:1 23502:1 23527:1 23528:1 23542:2 23558:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23856:1 23862:2 23870:1 23876:2 23904:6 23942:1 23970:1 23994:1 24002:1 24009:1 24015:1 24022:2 24037:1 24078:1 24089:1 24110:1 24119:1 24124:1 24150:1 24152:1 24158:1 24162:1 24174:1 24180:2 24183:1 24185:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:2 24665:1 24673:2 24689:1 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24834:1 24851:1 24854:3 24867:2 24871:1 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24928:3 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25599:1 25619:6 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25740:2 25750:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25867:1 25873:1 25910:4 25929:3 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26290:2 26293:2 26302:1 26349:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:2 26609:1 26613:1 26615:1 26644:1 26658:3 26664:1 26683:1 26684:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:3 26804:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26950:1 26960:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27308:1 27312:3 27341:1 27353:1 27361:1 27378:1 27389:1 27393:2 27404:1 27415:1 27431:1 27433:1 27439:1 27450:2 27454:1 27456:1 27465:1 27469:7 27475:1 27491:1 27504:1 27505:4 27520:5 27546:1 27573:1 27591:1 27598:1 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27799:1 27815:1 27818:1 27846:1 27860:1 27871:1 27880:1 27892:1 27910:2 27919:1 27939:1 27952:1 27954:1 27955:1 27991:1 27999:1 28010:1 28011:1 28017:2 28024:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28325:1 28340:2 28413:1 28418:1 28422:1 28424:1 28426:2 28492:1 28535:1 28543:4 28544:1 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:2 28671:1 28682:1 28694:2 28695:1 28701:2 28709:1 28711:1 28718:1 28756:1 28760:4 28769:1 28783:1 28796:1 28808:1 28811:2
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:2 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 457:1 467:2 480:1 512:1 533:1 558:1 605:2 611:1 635:1 650:1 692:1 693:1 695:2 697:1 732:1 741:1 791:1 796:1 811:1 830:1 867:4 872:1 876:1 885:1 890:4 895:1 911:1 915:1 919:1 928:1 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1059:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1190:1 1191:1 1196:1 1201:2 1209:2 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:5 1450:1 1452:1 1453:1 1456:1 1460:5 1463:1 1464:1 1482:1 1509:1 1513:1 1533:1 1534:2 1542:2 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:1 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:1 1704:1 1726:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:2 1824:1 1827:1 1842:2 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1987:1 1989:3 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2061:1 2065:1 2078:1 2102:2 2127:1 2143:1 2174:4 2185:2 2188:1 2199:1 2202:2 2229:1 2230:1 2238:2 2240:2 2241:2 2245:4 2248:1 2249:2 2252:2 2253:1 2254:1 2255:1 2257:2 2259:1 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2359:1 2372:1 2379:1 2407:2 2440:1 2442:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:4 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:3 2775:1 2819:1 2827:1 2841:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3116:1 3159:1 3166:1 3188:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:3 3300:1 3354:1 3366:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3554:1 3556:1 3561:1 3567:1 3583:1 3588:1 3606:1 3623:1 3630:4 3635:1 3641:1 3656:1 3660:1 3706:2 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3867:1 3870:1 3879:2 3884:1 3886:1 3906:1 3911:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4126:5 4127:1 4132:2 4138:1 4173:1 4191:4 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:1 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4452:1 4462:1 4463:1 4470:1 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4652:1 4681:1 4706:1 4781:1 4795:7 4796:1 4832:2 4846:1 4906:5 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4938:1 4940:2 4943:2 4948:1 4949:2 4951:1 4953:1 4971:1 4983:1 5010:1 5035:1 5078:1 5141:2 5179:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5447:1 5458:1 5464:2 5470:1 5492:1 5495:1 5513:1 5516:1 5524:1 5539:1 5565:1 5592:1 5615:2 5621:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:5 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:2 6061:1 6077:2 6099:1 6120:1 6148:2 6155:1 6158:1 6163:1 6212:1 6227:4 6230:1 6232:1 6236:3 6239:1 6247:1 6249:1 6253:3 6254:7 6258:2 6305:1 6311:2 6387:2 6398:1 6403:2 6434:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6654:3 6679:1 6683:1 6686:1 6690:1 6727:1 6783:1 6786:1 6810:1 6831:1 6876:1 6948:2 6951:2 6976:1 7013:2 7024:1 7047:1 7056:1 7062:1 7072:1 7073:2 7080:1 7089:1 7179:1 7222:1 7238:1 7248:3 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:1 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:1 7483:1 7504:2 7517:28 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7712:1 7715:1 7723:2 7734:1 7741:1 7753:1 7794:1 7797:1 7829:2 7884:1 7962:2 7979:4 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8143:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:1 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:1 8477:2 8490:1 8494:1 8523:1 8602:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8875:1 8882:1 8901:1 8923:4 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 9001:1 9010:3 9012:3 9014:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:1 9090:1 9102:1 9103:2 9136:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:6 9273:1 9274:1 9286:1 9298:1 9303:1 9316:2 9337:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:3 9454:1 9460:1 9462:1 9490:5 9506:3 9510:1 9512:1 9517:1 9543:1 9616:1 9646:4 9699:1 9700:3 9703:1 9706:1 9715:1 9734:1 9748:1 9753:2 9813:1 9822:4 9824:1 9826:2 9835:1 9853:1 9869:1 9882:1 9886:1 9917:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10093:2 10101:2 10176:1 10197:1 10204:3 10244:2 10268:1 10273:1 10280:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:6 10438:1 10439:1 10462:2 10492:1 10496:1 10498:1 10532:1 10574:1 10682:2 10685:3 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:1 10793:1 10810:3 10825:1 10850:1 10856:1 10859:1 10870:1 10877:1 10879:1 10914:1 10915:1 10920:1 10924:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:1 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11152:5 11196:1 11208:1 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11273:1 11307:1 11323:1 11328:1 11335:1 11341:1 11346:2 11366:1 11371:4 11419:2 11420:1 11425:1 11433:1 11440:2 11443:1 11444:1 11447:1 11449:2 11461:2 11500:1 11501:1 11504:1 11520:1 11529:1 11534:1 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11666:1 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11764:1 11833:1 11852:1 11855:5 11877:1 11879:1 11880:1 11896:2 11905:2 11918:2 11921:1 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:2 12043:1 12067:1 12077:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:1 12905:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:2 13095:1 13100:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13342:1 13344:2 13347:1 13350:6 13351:1 13368:2 13387:1 13401:1 13414:1 13424:2 13462:1 13477:3 13481:2 13488:1 13489:3 13491:1 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:1 13599:1 13606:1 13619:5 13623:1 13631:3 13648:2 13649:1 13654:1 13666:1 13675:1 13679:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13795:2 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13992:2 14002:1 14013:1 14021:1 14058:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:1 14172:1 14180:1 14184:1 14196:1 14213:2 14233:1 14253:4 14278:1 14296:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14415:1 14436:1 14487:1 14498:2 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14633:1 14634:1 14637:3 14645:2 14655:1 14659:1 14681:1 14725:1 14736:1 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14941:1 14958:1 14986:2 15002:1 15011:1 15060:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15162:1 15178:1 15207:1 15234:4 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15349:1 15392:1 15400:2 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:2 15657:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15692:1 15696:1 15722:1 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 16031:1 16048:2 16060:4 16071:1 16088:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16226:1 16243:1 16245:2 16394:1 16429:2 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:1 16758:1 16769:1 16817:1 16833:1 16836:3 16856:1 16861:2 16932:1 16947:1 16950:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17066:2 17095:1 17152:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:1 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:2 17391:1 17419:1 17432:1 17434:1 17436:1 17462:1 17483:1 17487:1 17537:1 17564:1 17570:1 17573:1 17603:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17714:1 17720:1 17763:1 17785:2 17822:1 17835:4 17865:1 17889:1 17964:1 17985:1 17990:1 17993:6 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18170:1 18203:1 18218:1 18223:1528 18226:1 18245:1 18271:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18435:1 18536:1 18567:1 18598:1 18667:1 18694:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:1 19004:1 19029:7 19072:1 19081:1 19114:1 19124:3 19127:1 19159:2 19210:1 19217:1 19225:2 19245:2 19260:1 19272:1 19278:1 19282:1 19301:1 19319:2 19327:1 19328:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:1 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19746:2 19748:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19823:1 19829:1 19840:2 19843:1 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 20010:2 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20258:1 20263:1 20273:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20393:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20556:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:2 20803:2 20842:1 20857:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20946:1 20953:1 20956:1 20973:1 20990:1 20994:1 21009:1 21043:1 21055:1 21097:1 21137:2 21159:2 21168:1 21175:1 21179:1 21185:5 21186:1 21198:2 21210:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21476:2 21486:1 21498:1 21547:1 21563:1 21565:2 21566:1 21588:2 21593:2 21616:1 21622:1 21632:1 21658:1 21682:2 21698:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:1 21774:1 21781:2 21788:1 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:5 22270:1 22274:1 22275:1 22279:1 22287:1 22290:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:2 22566:5 22584:1 22589:1 22643:1 22727:1 22737:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22882:2 22919:2 22926:1 22946:1 22950:1 22972:1 22996:1 22997:2 23001:1 23016:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23285:1 23308:1 23335:1 23353:1 23385:1 23393:1 23414:1 23447:1 23478:1 23487:3 23493:1 23502:1 23527:1 23528:1 23542:2 23558:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:1 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23856:1 23862:2 23870:1 23876:2 23904:6 23942:1 23970:1 23994:1 24002:1 24009:1 24015:1 24021:1 24022:2 24037:1 24078:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24180:2 24183:1 24185:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:2 24665:1 24673:2 24689:1 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24834:1 24851:1 24854:3 24867:2 24871:1 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24928:3 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:1 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25599:1 25619:6 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25740:2 25750:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25867:1 25873:1 25910:4 25929:3 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26290:2 26293:2 26302:1 26349:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:2 26609:1 26613:1 26615:1 26644:1 26658:3 26664:1 26683:1 26684:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:3 26804:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:1 26831:1 26840:1 26849:1 26873:1 26876:2 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26950:1 26960:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27308:1 27312:3 27341:1 27353:1 27361:1 27378:1 27389:1 27393:2 27404:1 27415:1 27431:1 27433:1 27439:1 27450:2 27454:1 27456:1 27465:1 27469:7 27475:1 27491:1 27504:1 27505:4 27520:5 27546:1 27573:1 27591:1 27598:1 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27799:1 27815:1 27818:1 27846:1 27860:1 27871:1 27880:1 27892:1 27910:2 27919:1 27939:1 27952:1 27954:1 27955:1 27991:1 27999:1 28010:1 28011:1 28017:2 28024:1 28041:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28325:1 28340:2 28413:1 28418:1 28422:1 28424:1 28426:2 28492:1 28535:1 28543:4 28544:1 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:2 28671:2 28682:1 28694:2 28695:1 28701:2 28709:1 28711:1 28718:1 28756:1 28760:4 28769:1 28783:1 28796:1 28808:1 28811:2
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:3 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 605:2 611:1 635:1 650:1 692:1 693:1 695:2 697:1 732:1 741:1 791:1 796:1 811:1 830:1 867:4 872:1 876:1 885:1 890:4 895:1 911:2 915:1 919:1 928:1 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1059:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1190:1 1191:1 1196:1 1201:2 1209:2 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:5 1450:1 1452:1 1453:1 1456:1 1460:5 1463:1 1464:1 1482:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:1 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:1 1704:1 1726:1 1753:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:2 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1987:1 1989:3 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2061:1 2065:1 2078:1 2102:2 2127:1 2143:1 2150:1 2174:4 2185:2 2188:1 2199:1 2202:2 2229:1 2230:1 2238:2 2240:2 2241:2 2245:4 2248:1 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:1 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2358:1 2359:1 2372:1 2379:1 2407:2 2440:1 2442:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:4 2527:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:3 2775:1 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3008:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3116:1 3159:1 3166:1 3188:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:5 3300:1 3354:1 3366:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3583:1 3588:1 3606:1 3623:1 3630:4 3635:1 3641:1 3656:1 3660:1 3706:3 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3867:1 3870:1 3879:2 3884:1 3886:1 3906:1 3911:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4126:5 4127:1 4132:2 4138:1 4146:1 4173:1 4191:4 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:1 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4433:1 4452:1 4462:1 4463:1 4470:1 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4652:1 4681:1 4706:1 4781:1 4795:7 4796:2 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4936:1 4938:1 4940:2 4943:2 4948:1 4949:2 4951:1 4953:1 4971:1 4983:1 5010:3 5025:1 5035:1 5048:1 5078:1 5141:2 5179:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5447:1 5458:1 5464:2 5470:1 5492:1 5495:1 5513:1 5516:1 5524:1 5539:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:1 5630:1 5640:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:5 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:2 6061:1 6077:2 6099:1 6120:1 6148:2 6155:1 6158:1 6163:1 6212:1 6227:4 6230:1 6232:1 6236:3 6239:1 6247:1 6249:1 6252:1 6253:3 6254:9 6257:1 6258:2 6305:1 6311:2 6387:2 6398:1 6403:2 6434:1 6464:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6654:3 6679:1 6683:1 6686:1 6690:1 6727:1 6783:1 6786:1 6810:1 6831:1 6876:1 6948:2 6951:2 6976:1 7013:2 7024:1 7047:1 7056:1 7062:1 7070:1 7072:1 7073:2 7080:1 7089:1 7179:1 7222:1 7238:1 7248:3 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:1 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7483:1 7504:2 7517:29 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7712:1 7715:1 7723:2 7734:1 7741:1 7753:1 7794:1 7797:1 7829:2 7884:1 7962:2 7976:1 7979:4 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8133:1 8143:1 8159:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:1 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:1 8477:2 8490:1 8494:1 8523:1 8602:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8875:1 8882:1 8901:1 8923:4 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 9001:1 9010:3 9012:3 9014:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:6 9270:1 9273:1 9274:1 9286:1 9298:1 9303:1 9316:2 9337:1 9342:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:3 9454:1 9460:1 9462:1 9490:5 9506:3 9510:1 9512:1 9517:1 9543:1 9616:1 9646:4 9682:1 9699:1 9700:4 9703:1 9706:1 9715:1 9734:1 9748:1 9753:3 9813:1 9822:4 9824:1 9826:2 9835:1 9853:1 9869:1 9882:1 9886:1 9917:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10093:2 10101:2 10116:1 10176:1 10197:1 10204:3 10244:2 10268:1 10273:1 10280:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:6 10438:1 10439:1 10462:2 10492:1 10496:1 10498:1 10532:1 10574:1 10682:2 10685:4 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:1 10793:1 10810:3 10825:1 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:1 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:5 11196:1 11208:1 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11273:1 11307:1 11323:1 11328:1 11335:1 11341:1 11346:2 11366:1 11371:4 11419:2 11420:1 11425:1 11433:1 11440:2 11443:1 11444:1 11447:1 11449:2 11456:1 11461:2 11500:1 11501:1 11504:2 11520:1 11529:1 11534:1 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11666:1 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:1 11855:5 11877:1 11879:1 11880:1 11896:2 11905:2 11913:1 11918:2 11921:1 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:2 12043:1 12067:1 12077:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:1 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:1 12905:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:2 13095:1 13100:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13342:1 13344:2 13347:1 13350:6 13351:1 13368:2 13387:2 13401:1 13413:1 13414:1 13424:2 13462:1 13470:1 13477:3 13481:2 13488:1 13489:3 13491:1 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:1 13599:1 13606:1 13619:5 13623:1 13631:3 13648:2 13649:1 13654:1 13666:1 13675:1 13679:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13795:2 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13992:2 14002:1 14013:1 14021:1 14058:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:1 14172:1 14180:1 14184:1 14196:1 14213:3 14233:1 14253:4 14278:1 14296:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14415:1 14436:1 14469:1 14487:1 14498:2 14512:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14633:1 14634:1 14637:3 14645:2 14651:1 14655:1 14659:1 14681:1 14725:1 14736:1 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14919:1 14926:1 14927:1 14930:1 14931:1 14941:1 14958:1 14986:2 15002:1 15011:1 15015:1 15060:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15162:1 15178:1 15207:1 15234:4 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:1 15378:1 15392:1 15400:2 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:2 15597:2 15657:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15685:2 15686:1 15692:1 15696:1 15722:2 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 15997:1 16031:1 16048:2 16060:4 16071:1 16088:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16226:1 16243:1 16245:2 16314:1 16394:1 16429:2 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:1 16758:1 16769:1 16817:1 16833:1 16836:3 16856:1 16861:2 16932:1 16947:1 16950:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17066:2 17095:1 17152:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:2 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:2 17391:1 17396:1 17419:1 17432:1 17434:1 17436:1 17462:1 17483:1 17487:1 17537:1 17547:1 17564:1 17570:1 17573:1 17603:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17714:1 17720:3 17763:1 17785:2 17797:1 17822:1 17835:4 17865:1 17889:1 17964:1 17985:1 17990:1 17993:6 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18170:1 18203:1 18218:1 18223:1573 18226:1 18245:1 18271:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18435:1 18536:1 18567:1 18598:1 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:1 19004:1 19029:7 19072:1 19081:1 19114:1 19124:3 19127:1 19159:3 19210:1 19217:1 19225:2 19245:2 19260:1 19272:1 19278:1 19282:1 19301:1 19319:2 19327:1 19328:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:1 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19746:2 19748:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19823:1 19829:1 19840:2 19843:1 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 20010:2 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20256:1 20258:1 20263:1 20273:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20393:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20556:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:2 20785:1 20803:2 20842:1 20857:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20946:1 20953:1 20956:1 20973:1 20990:1 20994:1 21009:1 21043:1 21055:1 21097:1 21137:2 21159:2 21168:1 21175:1 21179:1 21185:6 21186:1 21198:3 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21476:2 21486:1 21498:1 21516:1 21537:1 21547:1 21563:1 21565:2 21566:1 21588:2 21593:2 21616:1 21622:1 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:3 21774:1 21781:2 21788:1 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:5 22270:1 22274:1 22275:1 22279:1 22287:1 22290:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:2 22566:5 22584:1 22589:1 22643:1 22727:1 22737:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22882:2 22919:2 22926:1 22946:1 22950:1 22964:1 22972:1 22996:1 22997:2 23001:1 23016:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23237:1 23242:1 23251:1 23276:1 23285:1 23293:1 23308:1 23335:1 23353:1 23385:1 23393:1 23414:1 23447:1 23478:1 23487:3 23488:1 23493:1 23502:1 23527:1 23528:1 23542:2 23558:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:3 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23856:1 23862:2 23870:1 23876:2 23904:6 23942:1 23960:1 23970:1 23994:1 24002:1 24009:1 24015:1 24021:1 24022:2 24033:1 24037:1 24057:1 24078:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:2 24665:1 24673:2 24689:1 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24834:1 24851:1 24854:3 24867:2 24871:1 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24927:1 24928:3 24936:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:1 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:1 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:1 25599:1 25619:6 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25740:2 25750:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25867:1 25873:1 25910:4 25929:3 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26290:2 26293:2 26302:1 26349:1 26356:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:2 26609:1 26613:1 26615:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:3 26804:1 26805:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:2 26831:1 26840:1 26849:1 26873:1 26876:2 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26950:1 26960:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27308:1 27312:3 27341:1 27353:1 27361:1 27378:1 27389:1 27393:2 27404:1 27415:1 27431:1 27433:1 27439:1 27450:2 27454:1 27456:1 27465:1 27469:7 27475:1 27491:1 27504:1 27505:4 27520:5 27546:1 27573:1 27591:1 27598:1 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27799:1 27815:1 27818:1 27846:1 27860:1 27862:1 27867:1 27871:1 27880:1 27892:1 27910:2 27919:1 27939:1 27952:1 27954:1 27955:1 27991:1 27999:1 28010:1 28011:1 28017:2 28024:1 28041:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28325:1 28340:2 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:4 28544:1 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:2 28671:2 28682:1 28694:2 28695:1 28701:2 28709:1 28711:1 28718:1 28756:1 28760:4 28769:1 28783:1 28796:1 28808:1 28811:2
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:3 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 605:2 611:1 635:1 650:1 692:1 693:1 695:2 697:1 732:1 741:1 791:1 796:1 811:1 830:1 867:4 872:1 876:1 885:1 890:4 895:1 911:2 915:1 919:1 928:1 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1059:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1190:1 1191:1 1196:1 1201:2 1209:2 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:5 1450:1 1452:1 1453:2 1456:1 1460:5 1463:1 1464:1 1482:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:1 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1987:1 1989:3 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2061:1 2065:1 2078:1 2102:2 2127:1 2143:1 2150:1 2174:4 2185:2 2188:1 2199:1 2202:2 2229:1 2230:1 2238:2 2240:2 2241:2 2245:4 2248:1 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:1 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2358:1 2359:1 2372:1 2379:1 2407:2 2440:1 2442:1 2446:1 2466:1 2475:1 2490:1 2502:1 2506:1 2509:4 2527:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:3 2775:1 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3115:1 3116:1 3159:1 3166:1 3188:1 3196:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:5 3300:1 3354:1 3366:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3583:1 3586:1 3588:1 3606:1 3623:1 3630:4 3635:1 3641:1 3642:1 3656:1 3660:1 3706:3 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3816:1 3849:1 3850:2 3867:1 3870:1 3879:2 3884:1 3886:1 3906:1 3911:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4126:5 4127:1 4132:2 4138:1 4146:1 4173:1 4191:4 4193:1 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:2 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4433:1 4452:1 4462:1 4463:1 4470:2 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4652:1 4681:1 4706:1 4781:1 4795:7 4796:2 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4936:1 4938:1 4940:2 4943:2 4948:1 4949:2 4951:2 4953:1 4971:1 4983:1 5010:3 5025:1 5035:1 5048:1 5078:1 5141:2 5179:1 5186:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5447:1 5458:1 5464:2 5470:1 5492:1 5495:1 5513:1 5516:1 5524:1 5539:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:1 5630:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:6 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:2 6061:1 6077:2 6099:1 6120:1 6148:2 6155:1 6158:1 6163:1 6212:2 6227:4 6230:1 6232:1 6236:3 6239:1 6247:1 6249:1 6252:1 6253:3 6254:9 6257:1 6258:2 6305:1 6311:2 6387:2 6398:1 6403:2 6434:1 6464:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6645:1 6654:3 6679:1 6683:1 6686:1 6690:1 6727:1 6783:1 6786:1 6810:1 6831:1 6848:1 6876:1 6948:4 6951:2 6958:1 6976:1 7013:2 7024:1 7047:1 7056:1 7062:1 7070:1 7072:1 7073:2 7080:1 7089:1 7179:1 7222:1 7238:1 7248:3 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:2 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7483:1 7504:2 7517:29 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:1 7712:1 7715:1 7723:2 7734:1 7741:1 7753:1 7794:1 7797:1 7829:2 7884:1 7962:2 7976:1 7979:4 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8133:1 8143:1 8159:1 8205:1 8213:1 8233:1 8238:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:1 8349:2 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:2 8477:2 8490:1 8494:1 8523:1 8602:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8923:4 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:2 9010:3 9012:3 9014:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:6 9270:2 9273:1 9274:1 9286:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:3 9454:1 9460:1 9462:1 9490:6 9506:3 9510:1 9512:1 9517:1 9543:1 9616:1 9646:4 9682:1 9699:1 9700:4 9703:1 9706:1 9715:1 9734:1 9748:1 9753:3 9813:1 9822:4 9824:1 9826:2 9835:1 9853:1 9869:1 9882:1 9886:1 9917:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10244:3 10268:1 10273:1 10280:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:6 10438:1 10439:1 10462:2 10492:1 10496:1 10498:1 10532:1 10574:1 10682:2 10685:4 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:2 10793:1 10810:3 10825:1 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:1 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:5 11196:1 11208:2 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11273:1 11307:1 11323:1 11328:1 11335:1 11341:1 11346:2 11353:1 11366:1 11371:4 11419:2 11420:1 11425:1 11433:1 11440:2 11443:1 11444:1 11447:1 11449:2 11456:1 11461:2 11500:1 11501:1 11504:2 11520:1 11529:1 11534:1 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11666:1 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:1 11855:5 11877:1 11879:1 11880:1 11896:2 11905:2 11913:1 11918:2 11921:1 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:4 12043:1 12067:1 12077:1 12119:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:2 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:2 12905:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:3 13095:1 13100:2 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13342:1 13344:2 13347:1 13350:6 13351:1 13352:1 13368:2 13387:2 13401:2 13413:1 13414:1 13424:2 13462:1 13470:1 13477:3 13481:2 13488:1 13489:3 13491:1 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:5 13623:1 13631:3 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13795:4 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13992:2 14002:1 14013:1 14021:1 14058:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:1 14172:1 14180:1 14184:1 14196:1 14213:3 14233:1 14253:4 14278:1 14296:1 14309:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14415:1 14436:1 14469:1 14487:1 14498:2 14512:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14633:1 14634:1 14637:3 14645:2 14651:1 14655:1 14659:1 14681:1 14725:1 14736:1 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14919:1 14926:1 14927:1 14930:2 14931:1 14941:1 14958:1 14986:2 15002:1 15011:1 15015:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15162:1 15178:1 15207:1 15234:4 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15276:1 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:1 15378:1 15392:1 15400:2 15426:2 15475:2 15481:1 15497:1 15534:1 15566:1 15568:3 15597:2 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15682:1 15685:2 15686:1 15692:1 15696:1 15722:2 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 15997:1 16031:1 16032:1 16048:2 16060:4 16071:1 16088:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16226:1 16243:1 16245:2 16314:1 16394:1 16429:2 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:1 16758:1 16769:1 16817:1 16833:1 16836:3 16856:1 16861:2 16932:1 16947:1 16950:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17066:2 17095:2 17152:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17228:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:2 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:2 17391:1 17396:1 17419:2 17432:1 17434:1 17436:1 17440:1 17462:1 17483:1 17487:1 17537:1 17547:1 17564:1 17570:1 17573:1 17603:1 17612:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17714:1 17720:3 17763:1 17785:2 17797:1 17822:1 17835:4 17865:2 17889:1 17964:1 17985:1 17990:1 17993:6 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18170:1 18203:1 18218:1 18223:1656 18226:1 18245:1 18271:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18536:1 18567:1 18592:1 18598:1 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:1 19004:1 19029:7 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:3 19210:1 19217:1 19225:2 19245:2 19260:1 19272:1 19278:1 19282:1 19301:1 19319:2 19327:1 19328:1 19344:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:1 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19746:2 19748:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:1 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:2 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20226:1 20236:1 20256:1 20258:1 20263:1 20273:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20391:1 20393:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20538:1 20556:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:2 20785:1 20803:2 20842:1 20857:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20946:1 20953:1 20956:1 20973:1 20990:1 20994:1 21009:1 21043:1 21055:1 21097:1 21137:2 21159:2 21168:1 21171:1 21175:1 21179:1 21185:6 21186:1 21198:3 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21476:2 21486:1 21498:1 21516:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:2 21616:1 21622:1 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:3 21774:1 21781:2 21788:1 21790:1 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:5 22270:1 22274:1 22275:1 22279:1 22287:1 22290:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:2 22566:5 22584:1 22586:1 22589:1 22643:1 22727:1 22737:1 22759:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22882:2 22919:2 22926:1 22946:1 22950:1 22964:1 22972:1 22996:1 22997:2 23001:1 23016:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23227:1 23237:1 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23353:1 23385:1 23393:1 23414:1 23447:1 23478:1 23487:3 23488:1 23493:1 23502:1 23527:1 23528:1 23542:2 23558:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:3 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23856:1 23862:3 23870:1 23876:2 23897:1 23904:6 23942:1 23960:1 23970:1 23994:1 24002:1 24009:1 24015:1 24021:1 24022:2 24033:1 24037:1 24057:1 24078:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:2 24665:1 24673:2 24689:1 24701:1 24704:2 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24834:1 24851:1 24854:3 24867:2 24871:2 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24927:1 24928:3 24936:1 24955:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:2 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:1 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:1 25599:1 25619:6 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25740:2 25750:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25867:1 25873:1 25878:1 25910:4 25929:3 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26290:2 26293:2 26302:1 26349:1 26356:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26463:1 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:2 26609:1 26613:1 26615:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:3 26804:1 26805:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:2 26831:1 26840:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26950:1 26960:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27361:1 27378:1 27389:1 27393:2 27404:1 27415:1 27431:1 27433:1 27439:1 27450:2 27454:1 27456:1 27465:1 27469:8 27475:1 27491:1 27504:1 27505:5 27520:5 27546:1 27573:1 27591:1 27598:2 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27799:1 27815:1 27818:1 27846:1 27860:1 27862:1 27867:1 27871:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27952:1 27954:1 27955:1 27991:1 27999:1 28010:1 28011:1 28017:2 28024:1 28041:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28325:1 28340:2 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:4 28544:1 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:3 28671:2 28682:1 28694:2 28695:1 28701:3 28709:1 28711:1 28718:1 28756:1 28760:4 28769:1 28783:1 28796:1 28808:1 28811:2
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:3 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 605:2 611:1 635:1 650:1 670:1 692:1 693:1 695:2 697:1 732:1 741:1 791:1 796:1 811:1 830:1 867:5 872:1 876:1 885:1 890:4 895:1 911:2 915:2 919:1 928:1 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1059:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1171:1 1190:1 1191:1 1196:1 1201:2 1209:2 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:5 1450:1 1452:1 1453:2 1456:1 1460:5 1463:1 1464:1 1480:1 1482:1 1502:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:1 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:1 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1961:1 1987:1 1989:3 1990:1 2012:1 2021:1 2023:1 2033:1 2054:1 2061:1 2065:1 2078:1 2102:2 2127:1 2143:1 2150:1 2174:5 2185:2 2188:1 2199:1 2202:2 2229:1 2230:1 2238:2 2240:2 2241:2 2243:1 2245:4 2248:1 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:1 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:4 2344:2 2346:1 2358:1 2359:1 2372:1 2379:1 2407:2 2440:1 2442:1 2446:1 2466:1 2475:1 2490:2 2502:1 2506:1 2509:4 2527:1 2533:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:4 2775:1 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3115:1 3116:1 3159:1 3166:1 3188:1 3196:1 3202:1 3216:1 3237:2 3253:1 3268:1 3283:2 3294:6 3300:1 3354:1 3366:1 3376:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3583:1 3586:1 3588:1 3606:1 3623:1 3630:4 3635:1 3638:1 3641:1 3642:1 3656:1 3660:1 3706:3 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3807:1 3816:1 3849:1 3850:2 3858:1 3867:1 3870:1 3879:2 3884:1 3886:1 3906:1 3911:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4126:5 4127:1 4132:2 4138:1 4146:1 4173:1 4191:5 4193:1 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:2 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4433:1 4452:1 4462:1 4463:1 4470:2 4481:2 4525:1 4556:2 4566:1 4569:1 4587:1 4621:3 4652:1 4681:1 4706:1 4781:1 4795:8 4796:2 4814:1 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4936:1 4938:1 4940:2 4943:2 4948:1 4949:2 4951:2 4953:1 4971:1 4979:1 4983:1 5010:3 5025:1 5035:1 5048:1 5078:1 5141:2 5179:1 5186:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5447:1 5458:1 5464:2 5470:1 5492:1 5495:1 5513:1 5516:1 5524:1 5539:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:1 5625:1 5630:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:1 5910:6 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:2 6061:1 6077:2 6099:1 6120:1 6148:2 6155:1 6158:1 6163:1 6212:2 6227:4 6230:2 6232:1 6236:3 6239:1 6246:1 6247:1 6249:1 6252:1 6253:3 6254:9 6257:1 6258:2 6305:1 6311:2 6387:2 6398:1 6403:2 6434:1 6458:1 6464:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6645:1 6654:3 6679:1 6683:1 6686:1 6690:1 6727:1 6758:1 6783:1 6786:1 6810:1 6831:1 6848:1 6876:1 6948:4 6951:2 6958:1 6976:1 7013:2 7024:1 7047:1 7056:1 7062:1 7070:1 7072:1 7073:2 7080:1 7089:1 7114:1 7179:1 7222:1 7238:1 7248:3 7258:1 7276:3 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:2 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7483:1 7504:2 7517:30 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:1 7712:1 7715:1 7723:2 7734:1 7738:1 7741:1 7753:1 7794:1 7797:1 7829:2 7884:1 7962:2 7976:1 7979:5 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8133:1 8143:1 8159:1 8205:1 8213:1 8233:1 8238:1 8254:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:2 8349:2 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:2 8477:2 8490:1 8494:1 8523:1 8602:1 8620:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8923:4 8925:1 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:2 9010:3 9012:3 9014:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:7 9247:1 9270:2 9273:1 9274:1 9286:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9353:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:3 9454:1 9460:1 9462:1 9490:6 9506:3 9510:1 9512:1 9517:1 9543:1 9616:1 9646:4 9682:1 9699:1 9700:4 9703:1 9706:1 9715:1 9734:1 9748:1 9753:3 9813:1 9822:4 9824:1 9826:2 9835:1 9853:1 9869:1 9882:1 9886:1 9917:1 9944:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10244:3 10268:1 10273:1 10280:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:6 10438:1 10439:1 10462:2 10473:1 10492:1 10496:1 10498:1 10532:1 10574:1 10656:1 10660:1 10682:2 10685:4 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:2 10793:1 10810:3 10825:1 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10926:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:2 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:5 11196:1 11208:2 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11273:1 11281:1 11307:1 11323:1 11328:1 11335:1 11341:1 11346:2 11353:1 11366:1 11371:4 11413:1 11419:2 11420:1 11425:1 11433:1 11440:2 11443:1 11444:1 11447:1 11449:2 11456:1 11461:3 11500:1 11501:1 11504:2 11520:1 11529:1 11534:2 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11664:1 11666:1 11673:1 11676:1 11689:1 11715:1 11725:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:1 11855:6 11877:1 11879:1 11880:1 11896:3 11905:2 11913:1 11918:2 11921:1 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:4 12043:1 12067:2 12077:1 12119:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12249:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:2 12543:2 12546:1 12552:1 12572:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:2 12905:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:3 13095:1 13100:2 13115:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13336:1 13342:1 13344:2 13347:1 13350:7 13351:1 13352:1 13368:2 13387:2 13401:2 13413:1 13414:1 13424:2 13462:1 13470:1 13477:3 13481:2 13488:1 13489:4 13491:1 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:6 13623:1 13631:3 13640:1 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13792:1 13795:4 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13975:1 13992:2 14002:1 14005:1 14013:1 14021:1 14051:1 14058:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:2 14172:1 14180:1 14184:1 14196:1 14213:3 14233:1 14240:1 14253:4 14278:1 14296:1 14309:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:3 14412:1 14415:1 14436:1 14469:1 14487:1 14498:3 14512:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14614:1 14633:1 14634:2 14637:3 14645:2 14651:1 14655:1 14659:1 14681:1 14725:1 14736:1 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14912:1 14919:1 14926:1 14927:1 14930:2 14931:1 14941:1 14958:1 14986:2 15002:1 15011:1 15015:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15162:1 15178:1 15207:1 15234:4 15235:1 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15276:2 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:2 15378:1 15392:1 15400:2 15416:1 15426:2 15475:2 15481:1 15497:1 15518:1 15534:1 15566:1 15568:3 15597:2 15628:1 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15682:1 15685:2 15686:1 15692:1 15696:1 15722:2 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15842:1 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 15997:1 16031:1 16032:1 16048:2 16060:4 16071:1 16088:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16222:1 16226:1 16243:1 16245:2 16284:1 16314:1 16394:1 16410:1 16429:2 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:1 16758:1 16769:1 16817:1 16833:1 16836:3 16856:1 16861:3 16932:2 16947:1 16950:1 16955:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17066:2 17095:2 17152:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17228:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:2 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:2 17391:1 17396:1 17408:1 17419:2 17420:1 17432:1 17434:1 17436:1 17440:1 17462:1 17483:1 17487:1 17500:1 17520:1 17537:1 17547:1 17564:1 17570:1 17573:1 17603:1 17612:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17712:1 17714:1 17720:3 17763:1 17785:2 17797:1 17822:1 17835:4 17865:2 17889:1 17964:1 17985:1 17990:1 17993:6 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18170:1 18203:1 18218:1 18223:1750 18226:1 18245:1 18271:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18536:1 18567:1 18592:1 18598:1 18663:1 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:2 18989:1 19004:1 19029:8 19032:1 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:4 19189:1 19210:1 19217:1 19225:2 19245:2 19260:1 19272:1 19278:1 19282:1 19301:1 19319:2 19324:1 19327:1 19328:1 19344:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19418:1 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:2 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19746:2 19748:1 19754:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:1 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:2 20011:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20211:1 20226:1 20236:1 20256:1 20258:1 20263:1 20273:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20391:1 20393:1 20398:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20538:1 20555:1 20556:1 20573:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:2 20785:1 20803:2 20842:1 20846:1 20857:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20946:1 20953:1 20956:1 20957:1 20959:1 20973:1 20990:1 20994:1 21009:1 21043:1 21055:1 21097:1 21111:1 21137:2 21140:1 21159:2 21168:1 21171:1 21175:1 21179:1 21185:6 21186:1 21198:3 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21442:1 21476:2 21486:1 21498:1 21516:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:2 21616:1 21622:1 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:3 21774:1 21781:2 21788:1 21790:2 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22020:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22095:1 22120:1 22126:1 22132:1 22140:1 22142:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:6 22270:1 22274:1 22275:1 22279:1 22287:1 22290:1 22291:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22436:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:2 22566:5 22584:1 22586:1 22589:1 22643:1 22727:1 22737:1 22759:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22880:1 22882:2 22919:2 22926:1 22940:1 22946:2 22950:1 22964:1 22972:1 22996:1 22997:2 23001:1 23016:1 23021:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:1 23191:1 23226:1 23227:1 23237:2 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23353:1 23385:1 23393:1 23414:1 23447:1 23478:1 23487:3 23488:1 23493:1 23502:1 23527:1 23528:1 23542:2 23558:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:3 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23856:1 23862:4 23870:1 23876:2 23897:1 23904:6 23942:1 23960:1 23970:1 23994:1 24000:1 24002:1 24009:1 24015:1 24021:1 24022:2 24033:1 24037:1 24057:1 24074:1 24078:1 24079:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24197:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24412:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:2 24665:1 24673:2 24689:1 24701:1 24704:2 24708:1 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24834:1 24851:1 24854:3 24867:2 24871:2 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24927:1 24928:3 24936:1 24955:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:2 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:1 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:1 25599:1 25619:6 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25740:2 25750:1 25753:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25866:1 25867:1 25872:1 25873:1 25878:1 25910:4 25929:3 25934:1 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26290:2 26293:2 26302:1 26349:1 26356:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26463:1 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:2 26609:1 26613:1 26615:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26746:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:3 26804:1 26805:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:2 26831:1 26840:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26947:1 26950:1 26960:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27361:1 27378:1 27389:1 27393:3 27404:1 27415:1 27431:1 27433:1 27439:1 27450:2 27454:2 27456:1 27465:1 27469:9 27475:1 27491:1 27504:1 27505:5 27520:6 27524:1 27546:1 27573:1 27591:1 27598:2 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27662:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27788:1 27799:1 27815:1 27818:1 27846:1 27860:1 27862:1 27867:2 27871:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27952:1 27954:1 27955:1 27991:1 27999:1 28010:1 28011:2 28017:2 28024:1 28041:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28226:2 28239:1 28270:1 28280:1 28297:1 28325:1 28340:2 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:5 28544:1 28550:2 28559:1 28561:1 28585:1 28593:1 28611:2 28627:3 28671:2 28682:1 28684:1 28694:2 28695:1 28701:3 28709:1 28711:1 28718:1 28743:1 28756:1 28760:4 28769:1 28783:1 28796:1 28797:1 28808:1 28811:2
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:4 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:2 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 605:3 611:1 635:1 650:1 670:1 692:1 693:1 695:2 697:1 732:1 741:1 791:1 796:1 811:1 830:1 867:5 872:1 876:1 885:1 890:4 895:1 911:2 915:2 919:1 928:1 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1059:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1171:1 1190:1 1191:1 1196:1 1201:2 1209:2 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:5 1450:1 1452:1 1453:3 1456:1 1460:5 1463:1 1464:1 1480:1 1482:1 1502:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:2 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:2 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1961:1 1987:1 1989:3 1990:1 2012:1 2021:1 2023:1 2033:1 2034:1 2054:1 2061:1 2065:1 2078:1 2102:2 2127:1 2143:1 2150:1 2174:5 2185:2 2188:1 2199:1 2202:2 2229:1 2230:1 2238:2 2240:2 2241:2 2243:1 2245:4 2248:1 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:2 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:5 2344:2 2346:1 2358:1 2359:1 2372:1 2379:1 2407:2 2440:1 2442:1 2446:1 2466:1 2475:1 2490:2 2502:1 2506:1 2509:4 2527:1 2533:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:4 2775:1 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3115:2 3116:1 3159:1 3166:1 3188:1 3196:1 3202:1 3216:1 3220:1 3237:2 3253:1 3268:1 3283:2 3294:6 3300:1 3348:1 3354:1 3366:1 3376:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3583:1 3586:1 3588:1 3606:1 3623:1 3630:4 3635:1 3638:1 3641:1 3642:1 3646:1 3656:1 3659:1 3660:1 3706:4 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3807:1 3816:1 3849:1 3850:2 3858:1 3867:1 3870:1 3879:2 3884:1 3886:1 3906:1 3911:1 3912:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4126:5 4127:1 4132:2 4138:1 4146:1 4173:1 4191:5 4193:1 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:2 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4433:2 4452:1 4462:1 4463:1 4470:2 4481:2 4525:1 4556:2 4566:1 4569:1 4575:1 4587:1 4621:3 4652:1 4679:1 4681:1 4706:1 4781:1 4795:8 4796:2 4814:1 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4936:1 4938:1 4940:2 4943:2 4948:1 4949:2 4951:2 4953:1 4971:1 4979:1 4983:1 5010:3 5025:1 5035:1 5048:1 5078:1 5141:2 5179:1 5186:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5437:1 5447:1 5458:1 5464:2 5470:1 5492:1 5495:1 5513:1 5516:1 5524:1 5539:1 5553:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:2 5625:1 5630:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:2 5910:6 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:2 6061:1 6068:1 6077:2 6099:1 6120:1 6148:3 6155:1 6158:1 6163:1 6212:2 6227:4 6230:2 6232:1 6236:3 6239:1 6246:1 6247:1 6249:1 6252:1 6253:3 6254:9 6257:1 6258:2 6305:1 6311:2 6376:1 6387:2 6398:1 6403:2 6434:1 6458:1 6464:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6645:1 6654:3 6679:1 6683:1 6684:1 6686:1 6690:1 6726:1 6727:1 6758:1 6783:1 6786:1 6810:1 6831:1 6848:1 6863:1 6876:1 6948:6 6951:2 6958:1 6976:1 7013:2 7024:1 7047:1 7056:2 7062:1 7070:1 7072:1 7073:2 7080:1 7089:1 7114:1 7115:1 7179:1 7222:1 7238:1 7248:3 7256:1 7258:1 7276:4 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:2 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7476:1 7483:1 7504:2 7517:31 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:2 7712:1 7715:1 7723:2 7734:1 7738:1 7741:1 7753:1 7794:1 7797:1 7817:1 7829:2 7884:1 7962:2 7974:1 7976:1 7979:5 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8133:1 8143:1 8159:1 8167:1 8205:1 8213:1 8229:1 8233:1 8238:1 8254:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:3 8349:2 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:2 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:2 8477:2 8490:1 8494:1 8523:1 8602:1 8620:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8923:4 8925:1 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:2 9008:1 9010:3 9012:3 9014:1 9015:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:7 9247:1 9270:2 9273:1 9274:1 9286:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9353:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:3 9454:1 9460:1 9462:1 9490:6 9506:3 9510:1 9512:1 9514:1 9517:1 9543:1 9616:1 9646:4 9669:1 9682:1 9699:1 9700:4 9703:1 9706:1 9715:1 9734:1 9748:1 9753:3 9813:1 9822:4 9824:1 9826:2 9835:1 9853:1 9869:1 9882:1 9886:1 9917:1 9944:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10244:3 10268:1 10273:1 10280:2 10283:1 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:6 10438:1 10439:1 10462:2 10473:1 10492:1 10496:1 10498:1 10532:1 10574:1 10656:1 10660:1 10682:2 10683:1 10685:4 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:2 10793:1 10794:1 10810:3 10820:1 10825:1 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10926:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:2 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:5 11196:1 11208:2 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11273:1 11281:1 11307:1 11323:1 11328:1 11335:1 11341:1 11346:2 11353:1 11366:1 11371:4 11413:1 11419:2 11420:1 11425:1 11433:1 11440:2 11443:1 11444:1 11447:1 11449:2 11456:1 11461:3 11500:1 11501:1 11504:2 11520:1 11529:1 11534:2 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11664:1 11666:1 11673:1 11676:1 11689:1 11715:1 11725:1 11727:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:1 11855:6 11877:1 11879:1 11880:1 11896:3 11905:2 11913:1 11918:2 11921:2 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:4 12043:1 12067:2 12077:1 12119:2 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12249:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12389:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:3 12543:2 12546:1 12552:1 12572:1 12592:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:3 12905:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:3 13095:1 13100:2 13115:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13336:1 13342:1 13344:2 13347:1 13350:7 13351:1 13352:1 13368:2 13387:2 13401:2 13413:1 13414:1 13424:2 13462:1 13470:1 13477:3 13481:2 13488:1 13489:4 13491:1 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:6 13623:1 13631:3 13640:1 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13792:1 13795:4 13825:1 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13975:1 13992:2 14002:1 14005:1 14013:1 14021:1 14051:1 14058:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:2 14172:1 14180:1 14184:1 14196:1 14213:4 14222:1 14233:1 14240:1 14253:4 14278:1 14296:1 14309:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:4 14412:1 14415:1 14436:1 14469:1 14487:1 14498:3 14512:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14614:1 14633:1 14634:2 14637:3 14645:2 14651:1 14655:1 14659:1 14681:1 14725:1 14736:1 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14912:1 14919:1 14926:1 14927:1 14930:2 14931:1 14941:1 14958:1 14986:2 15002:1 15011:1 15015:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15150:1 15162:1 15178:1 15207:1 15234:4 15235:1 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15276:2 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:2 15378:1 15392:1 15400:2 15416:1 15426:2 15475:2 15481:1 15497:1 15518:1 15534:1 15566:1 15568:3 15597:2 15628:1 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15682:1 15685:2 15686:1 15692:1 15696:1 15722:3 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15842:1 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 15997:1 16031:1 16032:1 16048:2 16060:4 16071:1 16088:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16222:1 16226:1 16243:1 16245:2 16284:1 16314:1 16394:1 16410:1 16429:2 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:1 16758:1 16769:1 16817:1 16831:1 16833:1 16836:3 16856:1 16861:3 16932:2 16947:1 16950:1 16955:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17066:2 17095:3 17110:1 17152:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17228:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:2 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:2 17391:1 17396:1 17408:1 17415:1 17419:2 17420:1 17432:1 17434:1 17436:1 17440:1 17444:1 17462:1 17483:1 17487:1 17500:1 17520:1 17537:1 17547:1 17564:1 17570:1 17573:1 17603:2 17612:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17712:1 17714:1 17720:3 17763:1 17785:2 17797:1 17822:1 17835:4 17865:3 17889:1 17964:1 17985:1 17990:1 17993:6 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18170:1 18203:1 18218:1 18223:1818 18226:1 18245:1 18271:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18536:1 18567:1 18592:1 18598:1 18663:1 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18918:1 18937:1 18947:1 18950:1 18970:2 18977:1 18982:1 18989:1 19004:1 19027:1 19029:8 19032:1 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:4 19189:1 19210:1 19217:1 19225:2 19245:2 19260:2 19272:1 19278:1 19282:1 19301:1 19319:2 19324:1 19327:1 19328:1 19344:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19418:1 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:2 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19746:2 19748:1 19754:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:1 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:2 20011:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20211:1 20226:1 20236:1 20256:1 20258:1 20263:1 20273:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20391:1 20393:1 20398:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20538:1 20555:1 20556:1 20573:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:2 20785:1 20803:2 20842:1 20846:1 20857:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20946:1 20953:1 20956:1 20957:1 20959:1 20973:1 20990:1 20994:1 21009:1 21043:1 21055:1 21097:1 21111:1 21137:2 21140:1 21159:2 21168:1 21171:1 21175:1 21179:1 21185:6 21186:1 21198:3 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21315:1 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21442:1 21476:2 21486:1 21498:1 21516:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:2 21616:1 21622:1 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:3 21774:1 21781:2 21788:1 21790:2 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22020:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22095:1 22120:1 22126:1 22132:1 22140:1 22142:1 22144:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:6 22270:1 22274:1 22275:1 22279:1 22287:1 22290:1 22291:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22436:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:2 22566:5 22584:1 22586:2 22589:1 22643:1 22727:1 22737:1 22759:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22880:1 22882:2 22919:2 22926:1 22940:1 22946:2 22950:1 22964:1 22972:1 22996:1 22997:2 23001:1 23016:1 23021:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:2 23191:1 23226:1 23227:1 23237:2 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23353:1 23385:1 23393:1 23414:1 23447:1 23478:1 23487:3 23488:1 23493:1 23502:1 23527:1 23528:1 23542:2 23558:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:3 23695:1 23725:1 23736:1 23776:2 23787:1 23841:1 23856:2 23862:4 23870:1 23876:2 23897:1 23904:6 23942:1 23960:1 23970:1 23994:1 24000:1 24002:1 24009:1 24015:1 24021:1 24022:2 24033:1 24037:1 24057:1 24074:1 24078:1 24079:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24197:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24410:1 24412:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:2 24665:1 24673:2 24689:1 24701:1 24704:2 24708:1 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24834:1 24851:1 24854:3 24867:2 24871:2 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24927:1 24928:3 24936:1 24955:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:3 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25180:1 25188:1 25191:1 25212:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:1 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:2 25599:1 25619:6 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25740:2 25750:1 25753:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25866:1 25867:1 25872:1 25873:1 25878:1 25910:4 25929:3 25934:1 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26116:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26290:2 26293:2 26302:1 26349:1 26356:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26463:2 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:2 26609:1 26613:1 26615:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26746:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:4 26804:1 26805:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:2 26831:1 26840:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26947:1 26950:1 26960:1 26966:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27355:1 27361:1 27378:1 27379:1 27389:1 27393:3 27404:1 27415:1 27419:1 27431:1 27433:1 27439:1 27450:2 27454:2 27456:1 27465:1 27469:10 27475:1 27491:1 27501:1 27504:1 27505:5 27520:6 27524:1 27546:1 27573:1 27591:1 27598:3 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27662:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27788:1 27799:1 27815:1 27818:1 27846:1 27860:1 27862:1 27867:2 27871:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27952:1 27954:1 27955:1 27984:1 27991:1 27999:1 28010:1 28011:2 28017:2 28024:1 28041:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28224:1 28226:2 28239:1 28270:1 28280:1 28297:1 28309:1 28325:1 28340:2 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:5 28544:1 28550:2 28559:1 28561:1 28585:2 28593:1 28611:2 28627:3 28671:2 28682:1 28684:1 28694:2 28695:1 28701:3 28709:1 28711:1 28718:1 28743:1 28756:1 28760:4 28769:1 28783:1 28796:1 28797:1 28808:1 28811:2
12 2:1 43:1 45:1 56:1 71:2 88:1 94:1 109:4 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:2 288:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 605:3 611:1 635:1 650:1 670:1 692:1 693:1 695:2 697:1 732:1 741:1 791:1 796:1 811:1 830:1 867:5 872:1 876:1 885:1 890:4 895:1 911:2 915:2 919:1 928:1 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1059:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1171:1 1190:1 1191:1 1196:1 1201:2 1209:2 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:5 1450:1 1452:1 1453:3 1456:1 1460:5 1463:1 1464:1 1480:1 1482:1 1502:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1548:1 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:2 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:2 1758:1 1781:1 1793:1 1796:1 1802:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1931:1 1961:1 1987:1 1989:3 1990:1 2012:1 2021:1 2023:1 2033:1 2034:2 2054:1 2061:1 2065:1 2078:1 2102:2 2127:1 2143:1 2150:1 2174:5 2185:2 2188:1 2199:1 2202:2 2216:1 2229:1 2230:1 2238:2 2240:2 2241:2 2243:1 2245:4 2248:2 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:2 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:5 2344:2 2346:1 2358:1 2359:1 2372:1 2379:1 2407:2 2440:1 2442:1 2446:1 2466:1 2475:1 2490:2 2502:1 2506:1 2509:4 2527:1 2533:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:4 2775:1 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3115:3 3116:1 3159:1 3166:1 3188:1 3196:1 3202:1 3216:1 3220:1 3237:2 3253:1 3268:1 3283:2 3294:6 3300:1 3348:1 3354:1 3366:1 3376:1 3398:1 3403:1 3405:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3580:1 3583:1 3586:1 3588:1 3606:1 3623:1 3630:4 3635:1 3638:1 3641:1 3642:1 3646:1 3656:1 3659:1 3660:1 3706:4 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3807:1 3816:1 3849:1 3850:3 3854:1 3858:1 3867:1 3870:1 3879:3 3884:1 3886:1 3906:1 3911:1 3912:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4126:5 4127:1 4132:3 4138:1 4146:1 4173:1 4191:5 4193:1 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:2 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4433:2 4452:1 4462:1 4463:1 4470:2 4481:2 4525:1 4556:2 4566:1 4569:1 4575:1 4587:1 4621:3 4652:1 4679:1 4681:1 4706:1 4781:1 4795:8 4796:2 4814:1 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4936:1 4938:1 4940:2 4943:2 4948:1 4949:2 4951:2 4953:1 4971:1 4979:1 4983:1 5010:3 5025:1 5035:1 5048:1 5078:1 5141:2 5179:1 5186:1 5201:1 5210:1 5219:2 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5386:1 5419:1 5437:1 5447:1 5458:1 5464:2 5470:1 5492:1 5495:1 5513:1 5516:1 5524:1 5539:1 5553:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:2 5625:1 5630:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:2 5910:6 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:2 6061:1 6068:1 6077:2 6099:1 6120:1 6148:3 6155:1 6158:1 6163:1 6212:2 6227:4 6230:2 6232:2 6236:3 6239:1 6246:1 6247:1 6249:1 6252:1 6253:3 6254:9 6257:1 6258:2 6305:1 6311:2 6376:1 6387:2 6398:1 6403:2 6434:1 6458:1 6464:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6645:1 6654:3 6679:1 6683:1 6684:1 6686:1 6690:1 6726:1 6727:1 6758:1 6783:1 6786:1 6810:1 6831:1 6848:1 6863:1 6876:1 6948:6 6951:2 6958:1 6976:1 7013:2 7024:1 7047:1 7056:2 7062:1 7070:1 7072:1 7073:2 7080:1 7089:1 7114:1 7115:1 7179:1 7222:1 7238:1 7248:3 7256:2 7258:1 7276:4 7277:2 7278:3 7290:1 7312:1 7325:1 7372:2 7390:1 7411:2 7415:1 7416:1 7447:7 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7476:1 7483:1 7504:2 7517:32 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:2 7712:1 7715:1 7723:2 7734:1 7738:1 7741:1 7753:1 7794:1 7797:1 7817:1 7829:2 7884:1 7962:2 7974:1 7976:1 7979:5 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8132:1 8133:1 8143:1 8159:1 8167:1 8205:1 8213:1 8229:2 8233:1 8238:1 8254:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:3 8349:2 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:3 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:2 8477:2 8490:1 8494:1 8523:1 8602:1 8620:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8923:4 8925:1 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:2 9008:1 9010:3 9012:3 9014:1 9015:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:7 9247:1 9270:2 9273:1 9274:2 9286:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9353:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:3 9454:1 9460:1 9462:1 9490:6 9506:3 9510:1 9512:1 9514:1 9517:1 9543:1 9616:1 9646:4 9669:1 9682:1 9699:1 9700:4 9703:1 9706:1 9715:1 9734:1 9748:1 9753:3 9813:1 9822:4 9824:1 9826:2 9835:1 9853:1 9869:1 9882:1 9886:1 9917:1 9944:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10238:1 10244:3 10268:1 10273:1 10280:2 10283:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:7 10438:1 10439:1 10462:2 10473:1 10492:1 10496:1 10498:2 10532:1 10574:1 10656:1 10660:1 10682:2 10683:1 10685:4 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:2 10793:1 10794:1 10810:3 10820:1 10825:1 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10926:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:2 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:5 11196:1 11208:2 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11273:1 11281:1 11307:1 11323:1 11328:1 11335:1 11341:1 11346:2 11353:1 11366:1 11371:4 11413:1 11419:2 11420:1 11425:1 11433:1 11440:2 11443:1 11444:1 11447:1 11449:2 11456:1 11461:3 11500:1 11501:1 11504:2 11520:1 11529:1 11534:2 11542:1 11553:1 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11664:1 11666:1 11673:1 11676:1 11689:1 11715:1 11725:1 11727:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:1 11855:6 11877:1 11879:1 11880:1 11896:3 11905:2 11913:1 11918:2 11921:2 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:4 12043:1 12067:2 12077:1 12111:1 12119:2 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12249:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12389:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:3 12543:2 12546:1 12552:1 12572:1 12592:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:3 12905:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:3 13095:1 13100:2 13115:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13336:1 13342:1 13344:2 13347:1 13350:7 13351:1 13352:1 13368:2 13387:2 13401:2 13413:1 13414:1 13424:2 13431:1 13462:1 13470:1 13477:3 13481:2 13488:1 13489:4 13491:1 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:6 13623:1 13631:3 13640:1 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13792:1 13793:1 13795:4 13825:1 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13975:1 13992:2 14002:1 14005:1 14013:1 14021:1 14051:1 14058:1 14060:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:2 14172:1 14180:1 14184:1 14196:1 14213:4 14222:1 14233:1 14240:1 14253:4 14278:1 14296:1 14309:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:4 14412:1 14415:1 14436:1 14469:1 14487:1 14498:3 14512:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14614:1 14633:1 14634:2 14637:3 14645:2 14651:1 14655:1 14659:1 14681:1 14725:1 14736:2 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14912:1 14919:1 14926:1 14927:1 14930:2 14931:1 14941:1 14958:1 14986:2 15002:1 15005:1 15011:1 15015:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15150:1 15162:1 15178:1 15207:1 15234:4 15235:1 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15276:2 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:2 15378:1 15392:1 15400:2 15416:1 15426:2 15475:2 15481:1 15497:1 15518:1 15534:1 15566:1 15568:3 15597:2 15628:1 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:1 15677:1 15682:1 15685:2 15686:1 15692:1 15696:1 15722:3 15727:1 15730:1 15742:2 15770:1 15794:1 15801:1 15805:1 15820:2 15827:1 15829:2 15842:1 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 15997:1 16031:1 16032:1 16048:2 16060:4 16071:1 16088:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16222:1 16226:1 16243:1 16245:2 16284:1 16314:1 16394:1 16410:1 16429:2 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:1 16758:1 16769:1 16776:1 16817:1 16831:1 16833:1 16836:3 16856:1 16861:3 16932:2 16947:1 16950:1 16955:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17066:2 17095:4 17110:1 17131:1 17152:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17225:1 17228:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:2 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:2 17391:1 17396:1 17408:1 17415:1 17419:2 17420:1 17432:1 17434:1 17436:1 17440:1 17444:1 17462:1 17483:1 17487:1 17500:1 17520:1 17537:2 17547:1 17564:1 17570:1 17573:1 17603:2 17612:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17712:1 17714:1 17720:3 17763:1 17785:2 17797:1 17822:1 17835:4 17865:3 17889:1 17964:1 17985:1 17990:1 17993:6 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:1 18136:1 18141:1 18170:1 18203:1 18218:1 18223:1867 18226:1 18245:1 18271:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18536:1 18567:1 18592:1 18598:1 18663:1 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18895:1 18918:1 18937:1 18947:1 18950:1 18970:2 18977:1 18982:1 18989:1 19004:1 19027:1 19029:8 19032:1 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:4 19189:1 19210:1 19217:1 19225:2 19245:2 19260:2 19272:1 19278:1 19282:1 19301:1 19319:2 19324:1 19327:1 19328:1 19344:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19418:1 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:2 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19746:2 19748:1 19754:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:1 19856:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:2 20011:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20211:1 20226:1 20236:1 20256:1 20258:1 20263:1 20273:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20391:1 20393:1 20398:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20538:1 20555:1 20556:1 20573:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:2 20785:1 20803:2 20842:1 20846:1 20857:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20946:1 20953:1 20956:1 20957:1 20959:1 20973:1 20990:1 20994:1 21009:1 21043:1 21055:1 21097:1 21111:1 21137:2 21140:1 21159:3 21168:1 21171:1 21175:1 21179:1 21185:6 21186:1 21198:3 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21315:1 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21433:1 21442:1 21473:1 21476:2 21486:1 21498:1 21516:1 21517:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:2 21616:1 21622:1 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:3 21774:1 21781:2 21788:1 21790:2 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22020:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22095:1 22120:1 22126:1 22132:1 22140:1 22142:1 22144:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:6 22270:1 22274:1 22275:1 22279:1 22287:1 22290:1 22291:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22436:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:2 22566:5 22584:1 22586:3 22589:1 22643:1 22687:1 22727:1 22737:1 22759:1 22777:1 22781:2 22791:1 22796:1 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22880:1 22882:2 22919:2 22926:1 22940:1 22946:2 22950:1 22964:1 22972:1 22996:1 22997:2 23001:1 23016:1 23021:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23129:1 23157:2 23191:1 23226:1 23227:1 23237:2 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23353:1 23385:1 23393:1 23414:1 23447:1 23478:1 23487:3 23488:1 23493:1 23502:1 23527:1 23528:1 23542:2 23558:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:3 23695:1 23725:1 23736:1 23776:2 23780:1 23787:1 23841:1 23856:2 23862:4 23870:1 23876:2 23897:1 23904:6 23942:1 23960:1 23970:1 23994:1 24000:1 24002:1 24009:1 24015:1 24021:1 24022:2 24033:1 24037:1 24057:1 24074:1 24078:1 24079:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24197:1 24198:1 24202:1 24215:1 24247:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24410:1 24412:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24636:4 24639:1 24643:1 24652:2 24665:1 24673:2 24689:1 24701:1 24704:2 24708:1 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24834:1 24851:1 24854:3 24867:2 24871:2 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24927:1 24928:3 24936:1 24955:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:3 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25180:1 25188:1 25191:1 25212:1 25225:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:1 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:2 25599:1 25619:6 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25740:2 25750:1 25753:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25866:1 25867:1 25872:1 25873:1 25878:1 25910:4 25929:3 25934:1 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26116:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26290:2 26293:2 26302:1 26349:1 26356:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26451:1 26463:3 26474:1 26483:1 26489:2 26506:1 26535:1 26557:1 26559:1 26564:2 26609:1 26613:1 26615:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26746:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:4 26804:1 26805:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:2 26831:1 26840:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26947:1 26950:1 26960:1 26966:1 26967:1 26998:1 27016:1 27046:2 27073:1 27089:2 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27355:1 27361:1 27378:1 27379:1 27389:1 27393:3 27404:1 27415:1 27419:1 27431:1 27433:1 27439:1 27450:2 27454:2 27456:1 27465:1 27469:10 27475:1 27491:1 27501:1 27504:1 27505:5 27520:6 27524:1 27546:1 27573:1 27591:1 27598:3 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27662:1 27668:8 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27788:1 27799:1 27815:1 27818:1 27846:1 27860:1 27862:1 27867:2 27871:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27952:1 27954:1 27955:1 27984:1 27991:1 27999:1 28010:1 28011:2 28017:2 28024:1 28041:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28224:1 28226:2 28239:1 28270:1 28280:1 28297:1 28309:1 28325:1 28340:2 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:5 28544:1 28550:2 28559:1 28561:1 28585:2 28593:1 28611:2 28627:3 28671:2 28682:1 28684:1 28694:2 28695:1 28701:3 28709:1 28711:2 28718:1 28743:1 28756:1 28760:4 28769:1 28783:1 28796:1 28797:1 28808:1 28811:2
12 2:1 41:1 43:1 45:1 56:1 71:2 88:1 94:1 109:4 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:2 238:1 288:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 572:1 605:3 611:1 635:1 650:1 670:1 692:1 693:1 695:2 697:2 732:1 741:1 791:1 796:1 811:1 830:1 867:5 872:1 876:1 885:1 890:4 895:1 911:2 915:2 919:1 928:1 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1059:1 1069:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1171:1 1190:1 1191:1 1196:1 1201:2 1209:3 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:5 1450:1 1452:1 1453:3 1456:1 1460:5 1463:1 1464:1 1480:1 1482:1 1502:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1548:1 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1630:2 1631:2 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:2 1758:1 1781:1 1793:1 1796:1 1802:1 1806:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1931:1 1961:1 1987:1 1989:3 1990:1 2012:1 2021:1 2023:1 2033:1 2034:2 2054:1 2061:1 2065:1 2078:1 2102:3 2127:1 2143:1 2150:1 2174:5 2185:2 2188:1 2199:1 2202:2 2216:1 2229:1 2230:1 2238:2 2240:2 2241:2 2243:1 2245:4 2248:2 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:2 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:5 2344:2 2346:1 2358:1 2359:1 2372:1 2379:1 2407:2 2411:1 2440:1 2442:1 2446:1 2466:1 2475:1 2490:2 2502:1 2506:1 2509:4 2527:1 2533:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:4 2775:2 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3115:3 3116:1 3159:1 3166:1 3187:1 3188:1 3196:1 3202:1 3216:1 3220:1 3237:2 3253:1 3268:1 3283:2 3294:8 3300:1 3348:1 3354:1 3366:1 3376:1 3398:1 3403:1 3405:1 3406:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3580:1 3583:1 3586:2 3588:1 3606:1 3623:1 3630:4 3635:1 3638:1 3641:1 3642:1 3646:1 3656:1 3659:1 3660:1 3706:4 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3807:1 3816:1 3849:1 3850:3 3854:1 3858:1 3867:1 3870:1 3879:3 3884:1 3886:1 3906:1 3911:1 3912:1 3919:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4096:1 4126:5 4127:1 4132:3 4138:1 4146:1 4173:1 4191:5 4193:1 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:2 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4433:2 4452:1 4462:1 4463:1 4470:2 4481:2 4525:1 4556:2 4566:1 4569:1 4575:1 4586:1 4587:1 4594:1 4621:3 4652:1 4672:1 4679:1 4681:1 4706:1 4781:1 4795:10 4796:2 4814:1 4818:1 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4936:1 4938:1 4940:2 4943:3 4948:1 4949:2 4951:2 4953:2 4971:1 4979:1 4983:1 5010:3 5025:1 5035:1 5048:1 5078:1 5141:2 5150:1 5179:1 5186:1 5201:1 5210:1 5219:3 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5373:1 5386:2 5419:1 5437:1 5447:1 5458:1 5464:2 5470:1 5492:1 5495:1 5513:1 5515:1 5516:1 5524:1 5539:1 5553:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:2 5625:1 5630:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:2 5910:7 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:3 6061:1 6068:1 6077:2 6099:1 6120:1 6148:3 6155:1 6158:1 6163:1 6212:2 6227:4 6230:2 6232:2 6236:3 6239:1 6246:1 6247:1 6249:1 6252:1 6253:3 6254:9 6257:1 6258:2 6305:1 6311:2 6376:1 6387:2 6398:1 6403:2 6434:1 6456:2 6458:1 6464:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6645:1 6654:4 6679:1 6683:1 6684:1 6686:1 6690:1 6726:1 6727:1 6758:1 6783:1 6786:1 6810:1 6831:1 6848:1 6863:1 6876:1 6948:6 6951:2 6958:1 6976:1 7013:2 7024:1 7047:1 7056:2 7062:1 7070:1 7072:1 7073:2 7080:1 7089:1 7114:1 7115:1 7179:1 7222:1 7238:1 7248:3 7256:2 7258:1 7276:4 7277:2 7278:4 7290:1 7312:1 7325:1 7343:1 7372:2 7390:1 7411:2 7415:1 7416:1 7447:8 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7476:1 7483:1 7504:2 7517:32 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:2 7712:1 7715:1 7723:2 7734:1 7738:1 7741:1 7753:1 7794:1 7797:1 7817:1 7829:2 7884:1 7894:1 7962:2 7974:1 7976:1 7979:6 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8127:1 8132:1 8133:1 8143:1 8159:1 8167:1 8205:1 8213:1 8229:2 8233:1 8238:1 8254:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:3 8349:2 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:3 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:3 8474:1 8477:2 8482:1 8490:1 8494:1 8523:1 8602:1 8620:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8837:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8923:4 8925:1 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:3 9008:1 9010:3 9012:3 9014:1 9015:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9167:1 9169:1 9172:1 9181:1 9189:1 9216:1 9232:7 9247:1 9270:2 9273:1 9274:2 9286:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9353:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:1 9453:3 9454:1 9460:1 9462:1 9490:6 9506:3 9510:1 9512:1 9514:1 9517:1 9543:1 9616:1 9646:4 9669:1 9682:1 9699:1 9700:4 9703:1 9706:1 9715:1 9734:1 9748:1 9753:3 9765:1 9813:1 9822:4 9824:1 9826:2 9828:1 9835:1 9852:1 9853:1 9869:1 9882:1 9886:1 9917:1 9944:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10076:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10238:1 10244:3 10268:1 10273:1 10280:2 10283:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:7 10438:1 10439:1 10462:2 10473:1 10492:1 10496:1 10498:2 10532:1 10574:1 10656:1 10660:1 10682:2 10683:1 10685:5 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:2 10793:1 10794:1 10810:3 10820:1 10825:2 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10926:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:2 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:5 11196:1 11208:3 11224:2 11230:1 11231:1 11236:1 11243:1 11256:2 11273:1 11281:1 11307:1 11323:2 11328:1 11335:1 11341:1 11346:2 11353:1 11366:1 11371:4 11413:2 11419:2 11420:1 11425:1 11433:1 11435:1 11440:2 11443:1 11444:1 11447:1 11449:2 11456:1 11461:3 11500:1 11501:1 11504:2 11520:1 11529:1 11534:2 11542:1 11553:2 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11664:1 11666:1 11673:1 11676:1 11689:1 11705:1 11715:1 11725:1 11727:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:1 11855:6 11877:1 11879:1 11880:1 11896:3 11905:2 11913:1 11918:2 11921:2 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:4 12043:1 12067:2 12077:1 12111:1 12114:1 12119:2 12133:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12249:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12389:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:3 12543:2 12546:1 12552:1 12572:1 12592:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:3 12857:2 12871:1 12877:1 12882:1 12895:1 12898:3 12905:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:3 13095:1 13100:2 13115:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13336:1 13342:1 13344:2 13347:1 13350:7 13351:1 13352:1 13368:2 13387:2 13401:2 13413:1 13414:1 13424:2 13431:1 13462:1 13470:1 13477:3 13481:2 13483:1 13488:1 13489:4 13491:2 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:6 13623:1 13631:3 13640:1 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13792:1 13793:1 13795:4 13825:1 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13975:1 13992:2 14002:1 14005:1 14013:1 14021:1 14051:1 14058:1 14060:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:2 14172:2 14180:1 14184:1 14196:1 14213:4 14222:1 14233:1 14240:1 14253:4 14257:1 14278:1 14296:1 14309:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:4 14412:1 14415:1 14436:1 14469:1 14487:1 14498:3 14512:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14614:1 14633:1 14634:2 14637:3 14645:2 14651:1 14655:1 14659:1 14681:1 14725:1 14736:2 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14912:1 14919:1 14926:1 14927:2 14930:2 14931:1 14941:1 14958:1 14986:2 15002:1 15005:1 15011:1 15015:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15150:1 15162:1 15178:1 15202:1 15207:1 15234:4 15235:1 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15276:2 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:2 15378:1 15392:1 15400:2 15416:1 15421:1 15426:2 15433:1 15475:2 15481:1 15497:1 15518:1 15534:1 15566:1 15568:3 15597:2 15628:1 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:2 15677:1 15682:1 15685:3 15686:1 15692:1 15696:1 15722:3 15727:1 15730:1 15742:2 15770:1 15771:1 15794:1 15801:1 15805:1 15820:3 15827:1 15829:2 15831:1 15842:1 15843:1 15861:1 15884:1 15900:1 15916:1 15935:1 15937:2 15941:2 15959:1 15997:1 16031:1 16032:1 16048:2 16060:4 16071:1 16088:1 16096:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16222:1 16226:1 16243:1 16245:2 16284:1 16314:1 16394:1 16410:1 16429:2 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:2 16758:1 16769:1 16776:1 16817:1 16831:1 16833:1 16836:3 16856:1 16861:3 16932:2 16947:1 16950:1 16955:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17066:2 17095:4 17110:1 17130:1 17131:1 17152:1 17161:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17225:1 17228:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:3 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:2 17391:1 17396:1 17408:1 17415:1 17419:2 17420:1 17432:1 17434:1 17436:1 17440:1 17444:1 17462:1 17483:1 17487:1 17500:1 17520:1 17537:2 17547:1 17564:1 17570:1 17573:1 17603:2 17612:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17712:1 17714:1 17720:3 17763:1 17785:2 17797:1 17822:1 17835:4 17865:3 17889:1 17964:1 17985:1 17990:1 17993:6 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:2 18136:1 18141:1 18170:1 18203:1 18218:1 18223:1963 18226:1 18245:1 18267:1 18271:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18536:1 18545:1 18567:1 18592:1 18598:1 18663:1 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18895:1 18918:1 18937:1 18947:1 18950:1 18970:2 18977:1 18982:1 18989:1 19004:1 19027:1 19029:8 19032:1 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:4 19189:1 19208:1 19210:1 19217:1 19225:2 19245:2 19260:2 19272:1 19278:2 19282:1 19301:1 19319:2 19324:1 19327:1 19328:1 19344:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19418:1 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:2 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19746:2 19748:1 19754:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:1 19856:1 19858:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:3 20011:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20175:2 20211:1 20226:1 20236:1 20256:1 20258:1 20263:1 20273:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20391:1 20393:1 20398:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20538:1 20555:1 20556:1 20573:1 20582:1 20594:1 20604:2 20671:1 20706:1 20712:1 20752:2 20785:1 20803:2 20842:1 20846:1 20857:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20946:1 20953:1 20956:1 20957:1 20959:1 20973:1 20990:1 20994:1 21009:1 21025:1 21043:1 21055:1 21097:1 21111:1 21137:2 21140:1 21159:3 21168:1 21171:1 21175:1 21179:1 21185:6 21186:1 21198:3 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21315:1 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21430:1 21433:1 21442:1 21473:1 21476:2 21486:1 21498:1 21516:1 21517:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:2 21616:1 21622:2 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:3 21774:1 21781:2 21786:1 21788:1 21790:2 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:1 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22020:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22095:1 22120:1 22126:1 22132:1 22140:1 22142:1 22144:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:6 22270:1 22274:1 22275:1 22279:1 22287:1 22290:1 22291:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22436:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:2 22566:5 22584:1 22586:3 22589:1 22643:1 22687:1 22727:1 22737:1 22759:1 22777:1 22781:3 22791:1 22796:1 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22880:1 22882:2 22919:2 22926:1 22940:1 22946:3 22950:1 22951:1 22964:1 22972:1 22996:1 22997:2 23001:1 23016:1 23021:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23098:1 23106:2 23109:1 23116:1 23120:1 23129:1 23157:2 23191:1 23226:1 23227:1 23237:2 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23353:1 23385:2 23393:1 23414:1 23447:1 23456:1 23478:1 23487:3 23488:1 23490:1 23493:1 23502:1 23527:1 23528:1 23542:2 23558:1 23573:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:3 23695:1 23725:2 23736:1 23776:2 23780:1 23787:1 23841:1 23856:2 23862:4 23870:1 23876:2 23897:1 23904:6 23942:1 23960:1 23970:1 23994:1 24000:1 24002:1 24009:1 24015:1 24021:1 24022:2 24033:1 24037:1 24057:1 24074:1 24078:1 24079:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24197:1 24198:1 24202:1 24215:1 24247:2 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24410:1 24412:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24615:1 24636:4 24639:1 24643:1 24652:2 24665:1 24673:2 24689:1 24701:1 24704:2 24708:1 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24825:1 24834:1 24851:1 24854:3 24866:1 24867:2 24871:2 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24927:1 24928:3 24936:1 24944:1 24955:1 24961:2 24962:1 24989:1 24992:1 25019:1 25064:3 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25171:1 25180:1 25188:1 25191:1 25212:1 25225:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:1 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25473:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:2 25599:1 25619:6 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25735:1 25740:2 25750:1 25753:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25866:1 25867:1 25872:1 25873:1 25878:1 25910:4 25929:3 25934:1 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26116:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26288:1 26290:2 26293:3 26302:1 26349:1 26356:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26434:1 26451:1 26463:3 26474:1 26483:1 26489:2 26506:1 26535:1 26540:1 26557:1 26559:1 26564:2 26609:1 26613:1 26615:1 26629:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26746:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:4 26804:1 26805:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:2 26831:1 26840:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26947:1 26950:1 26960:1 26966:1 26967:1 26998:1 27016:1 27046:2 27055:1 27073:1 27089:2 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27355:2 27361:1 27378:1 27379:1 27389:1 27393:3 27404:1 27415:1 27419:1 27431:1 27433:1 27439:1 27450:2 27454:2 27456:1 27465:1 27469:10 27475:1 27491:1 27501:1 27504:1 27505:5 27520:6 27524:1 27546:1 27573:1 27591:1 27598:3 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27662:1 27668:9 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27788:1 27799:1 27815:1 27818:1 27846:1 27860:1 27862:1 27867:2 27871:1 27872:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27952:2 27954:1 27955:1 27984:1 27991:1 27999:1 28010:1 28011:2 28017:2 28024:1 28041:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28224:1 28226:2 28239:1 28270:1 28280:1 28297:1 28309:1 28325:1 28340:2 28351:1 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:5 28544:1 28550:2 28559:1 28561:1 28585:2 28593:1 28611:2 28627:3 28671:2 28682:1 28684:1 28694:2 28695:1 28701:3 28709:2 28711:2 28718:1 28743:1 28756:1 28760:4 28769:1 28783:1 28796:1 28797:1 28808:1 28811:2
12 2:1 41:1 43:1 45:1 56:1 71:2 88:1 94:1 109:4 118:1 144:1 169:1 195:1 205:2 208:1 226:1 229:2 238:1 288:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 572:1 605:3 611:1 635:1 650:1 670:1 692:1 693:1 695:2 697:2 732:2 741:1 791:1 796:1 811:1 830:1 867:6 872:1 876:1 885:1 890:4 895:1 911:2 915:2 919:1 928:2 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1059:1 1069:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1171:1 1190:1 1191:1 1196:1 1201:2 1209:3 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1361:1 1404:5 1450:1 1452:1 1453:4 1456:1 1460:5 1463:1 1464:1 1480:1 1482:1 1502:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1548:1 1552:1 1556:1 1559:1 1563:2 1566:1 1571:1 1575:1 1585:1 1630:2 1631:2 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:2 1758:1 1781:1 1793:1 1796:1 1802:1 1806:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1931:1 1961:1 1987:1 1989:4 1990:1 2012:1 2021:1 2023:1 2033:1 2034:2 2054:1 2061:1 2065:1 2078:1 2102:4 2127:1 2143:1 2150:1 2174:5 2185:2 2188:1 2199:1 2202:2 2216:1 2229:1 2230:1 2238:2 2240:2 2241:2 2243:1 2245:5 2248:2 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:2 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:6 2344:2 2346:1 2358:1 2359:1 2372:1 2379:1 2407:2 2411:1 2440:1 2442:1 2446:1 2466:1 2475:1 2490:2 2502:1 2506:1 2509:4 2527:1 2533:1 2537:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:4 2775:2 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3115:3 3116:1 3159:1 3166:1 3187:1 3188:1 3196:1 3202:1 3216:1 3220:1 3237:2 3253:1 3268:1 3283:2 3294:8 3300:1 3348:1 3351:1 3354:1 3366:1 3376:1 3398:1 3403:1 3405:1 3406:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3580:1 3583:1 3586:2 3588:1 3606:1 3623:1 3630:4 3635:1 3638:1 3641:1 3642:1 3646:1 3656:1 3659:1 3660:1 3706:4 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3793:1 3805:1 3807:1 3816:1 3849:1 3850:3 3854:1 3858:1 3867:1 3870:1 3879:3 3884:1 3886:1 3906:1 3911:1 3912:1 3919:1 3921:1 3933:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4096:1 4126:5 4127:1 4132:3 4138:1 4146:1 4173:1 4191:5 4193:1 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:2 4268:2 4296:1 4308:1 4354:1 4379:1 4386:1 4400:1 4401:1 4418:1 4433:2 4452:1 4462:1 4463:1 4470:2 4481:2 4525:1 4556:2 4566:1 4569:1 4575:1 4586:1 4587:1 4594:1 4621:3 4652:1 4672:1 4679:1 4681:1 4706:1 4749:1 4781:1 4795:10 4796:2 4814:1 4818:1 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4936:1 4938:1 4940:2 4943:3 4948:1 4949:3 4951:2 4953:2 4971:1 4979:1 4983:1 5010:3 5025:1 5035:1 5048:1 5078:1 5141:2 5150:1 5179:1 5186:1 5201:1 5210:1 5219:3 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5373:1 5386:2 5419:1 5437:1 5447:1 5458:1 5464:2 5466:1 5470:1 5492:1 5495:1 5513:1 5515:1 5516:1 5524:1 5539:1 5553:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:2 5625:1 5630:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:2 5910:7 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:3 6061:1 6068:1 6077:2 6099:1 6120:1 6148:3 6155:1 6158:1 6163:1 6212:2 6227:4 6230:2 6232:2 6236:3 6239:1 6246:1 6247:1 6249:1 6252:1 6253:4 6254:9 6257:1 6258:2 6259:1 6305:1 6311:2 6376:1 6387:2 6398:1 6403:2 6434:1 6456:2 6458:1 6464:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:1 6568:1 6612:1 6613:1 6615:1 6616:1 6630:2 6645:1 6654:4 6679:1 6683:1 6684:1 6686:1 6690:1 6726:1 6727:1 6758:1 6783:2 6786:1 6810:1 6831:1 6848:1 6863:1 6876:1 6899:1 6948:6 6951:2 6958:1 6976:1 7013:2 7024:1 7047:1 7056:2 7062:1 7070:1 7072:1 7073:2 7080:1 7089:1 7095:1 7114:1 7115:1 7179:1 7222:1 7238:1 7248:3 7256:2 7258:1 7276:5 7277:2 7278:4 7290:1 7312:1 7325:1 7343:1 7372:2 7390:1 7399:1 7411:2 7415:1 7416:1 7447:8 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7476:1 7483:1 7504:2 7517:33 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:2 7712:1 7715:1 7723:2 7734:1 7738:1 7741:1 7753:1 7794:1 7797:1 7817:1 7829:2 7884:1 7894:1 7962:2 7974:1 7976:1 7979:6 8019:1 8021:1 8023:1 8031:1 8067:1 8083:1 8127:1 8132:1 8133:1 8143:1 8159:1 8167:1 8205:1 8213:1 8229:2 8233:1 8238:1 8254:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:3 8349:2 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:3 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:3 8474:1 8477:2 8482:1 8490:1 8494:1 8523:1 8602:1 8606:1 8620:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8837:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8923:4 8925:1 8938:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:3 9008:1 9010:3 9012:3 9014:1 9015:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9165:1 9167:1 9169:2 9172:1 9181:1 9189:1 9216:1 9232:7 9247:1 9270:2 9273:1 9274:2 9286:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9353:1 9355:2 9375:1 9376:2 9382:1 9389:2 9411:1 9415:1 9443:1 9449:2 9453:3 9454:1 9460:1 9462:1 9490:7 9506:3 9510:1 9512:1 9514:1 9517:1 9543:1 9616:1 9646:4 9669:1 9682:1 9699:1 9700:4 9703:1 9706:1 9715:1 9734:1 9748:1 9753:3 9765:1 9813:1 9822:4 9824:1 9826:2 9828:1 9835:1 9852:1 9853:1 9869:1 9882:1 9886:1 9917:1 9944:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10076:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10238:1 10244:3 10268:1 10273:1 10280:2 10283:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:7 10438:1 10439:1 10462:2 10473:1 10492:1 10496:1 10498:2 10532:1 10574:1 10656:1 10660:1 10682:2 10683:1 10685:5 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:2 10793:1 10794:1 10810:3 10820:1 10825:2 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10926:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:2 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:5 11196:1 11208:3 11224:2 11230:1 11231:1 11236:1 11243:1 11247:2 11256:2 11273:1 11281:1 11307:1 11323:2 11328:1 11335:1 11341:1 11346:2 11353:1 11366:1 11371:4 11413:2 11419:2 11420:1 11425:1 11433:1 11435:1 11440:2 11443:1 11444:1 11447:1 11449:2 11456:1 11461:3 11500:1 11501:1 11504:2 11520:1 11529:1 11534:2 11542:1 11553:2 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11664:1 11666:1 11673:1 11676:1 11689:1 11705:1 11715:1 11725:1 11727:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:1 11855:6 11877:1 11879:1 11880:1 11896:3 11905:2 11913:1 11918:2 11921:2 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:4 12043:1 12067:2 12077:1 12111:1 12114:1 12119:2 12133:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12249:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12389:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:4 12543:2 12546:1 12552:1 12572:1 12592:1 12609:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:4 12857:2 12871:1 12877:1 12882:1 12895:1 12898:4 12905:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:3 13095:1 13100:2 13115:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13322:1 13336:1 13342:1 13344:2 13347:1 13350:7 13351:1 13352:1 13368:2 13387:2 13401:2 13413:1 13414:1 13424:2 13431:1 13435:2 13462:1 13470:1 13477:3 13481:2 13483:1 13488:1 13489:4 13491:2 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:6 13623:1 13631:3 13640:1 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13792:1 13793:1 13795:4 13825:1 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13975:1 13992:2 14002:1 14005:1 14013:1 14021:1 14051:1 14058:1 14060:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:2 14172:2 14180:1 14184:1 14196:1 14213:4 14222:1 14233:1 14240:1 14253:4 14257:1 14278:1 14296:1 14309:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:4 14412:1 14415:1 14421:2 14436:1 14469:1 14487:1 14498:3 14512:1 14513:1 14528:1 14532:2 14533:1 14543:1 14563:1 14614:1 14633:1 14634:2 14637:3 14645:2 14651:1 14655:1 14659:1 14681:1 14725:1 14736:2 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14912:1 14919:1 14926:1 14927:2 14930:2 14931:1 14941:1 14958:1 14986:2 15002:1 15005:1 15011:1 15015:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15150:1 15162:1 15178:1 15202:1 15207:1 15234:4 15235:1 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15276:2 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:2 15378:1 15392:1 15400:2 15416:1 15421:1 15426:2 15433:1 15475:2 15481:1 15497:1 15518:1 15534:1 15566:1 15568:3 15597:2 15628:1 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:2 15677:1 15682:1 15685:3 15686:1 15692:1 15696:1 15722:3 15727:1 15730:1 15742:2 15770:1 15771:1 15794:1 15801:1 15805:1 15820:3 15827:1 15829:2 15831:1 15842:1 15843:1 15861:1 15884:1 15900:1 15912:1 15916:1 15935:1 15937:2 15941:2 15959:1 15997:1 16020:1 16031:1 16032:1 16048:2 16060:4 16071:1 16088:1 16096:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16222:1 16226:1 16243:1 16245:2 16284:1 16314:1 16394:1 16410:1 16429:4 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:2 16758:1 16769:1 16773:1 16776:1 16817:1 16831:1 16833:1 16836:3 16856:1 16861:3 16888:1 16932:2 16947:1 16948:1 16950:1 16955:1 16956:1 16960:1 16964:1 16966:1 16988:1 17014:1 17015:2 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17048:1 17066:2 17095:4 17110:1 17130:1 17131:1 17152:1 17161:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17225:1 17228:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:3 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:3 17391:1 17396:1 17408:1 17415:1 17419:2 17420:1 17432:1 17434:1 17436:1 17440:1 17444:1 17462:1 17483:1 17487:1 17500:1 17520:1 17537:2 17547:1 17564:1 17570:1 17573:1 17603:2 17612:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17712:1 17714:1 17720:3 17763:1 17785:2 17797:1 17822:1 17835:4 17865:4 17889:1 17964:1 17985:1 17990:1 17993:7 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:2 18136:1 18141:1 18160:1 18170:1 18203:1 18218:1 18223:2033 18226:1 18245:1 18267:1 18271:1 18274:1 18286:1 18288:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18536:1 18545:1 18567:1 18592:1 18598:1 18663:2 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18895:1 18918:1 18937:1 18947:1 18950:1 18970:2 18977:1 18982:1 18989:1 19004:1 19027:1 19029:8 19032:1 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:4 19189:1 19208:1 19210:1 19217:1 19222:1 19225:2 19245:2 19260:2 19272:1 19278:2 19282:1 19301:1 19319:2 19324:1 19327:1 19328:1 19344:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19418:1 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:2 19601:4 19645:1 19670:3 19680:3 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19736:1 19746:2 19748:1 19754:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:1 19856:1 19858:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:3 20011:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20169:1 20175:2 20211:1 20226:1 20236:1 20256:1 20258:1 20263:1 20273:1 20277:1 20280:1 20287:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20384:2 20391:1 20393:1 20398:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20522:1 20538:1 20555:1 20556:1 20573:1 20582:1 20594:1 20604:2 20664:1 20671:1 20706:1 20712:1 20752:2 20785:1 20803:2 20842:1 20846:1 20857:1 20858:2 20863:1 20876:1 20892:1 20899:1 20901:1 20929:1 20946:1 20953:1 20956:1 20957:1 20959:1 20973:1 20990:1 20994:1 21009:1 21025:1 21043:1 21055:1 21097:1 21111:1 21137:2 21140:1 21153:1 21159:3 21168:1 21171:1 21175:1 21179:1 21185:6 21186:1 21198:3 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21315:1 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21430:1 21432:1 21433:1 21442:1 21473:1 21476:2 21486:1 21498:1 21514:1 21516:1 21517:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:3 21616:1 21622:2 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:3 21774:1 21781:2 21786:1 21788:1 21790:2 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:2 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:1 21959:2 21972:3 21985:2 21997:1 22020:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22095:1 22120:1 22126:1 22132:1 22140:1 22142:1 22144:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:6 22270:1 22274:1 22275:1 22279:1 22287:1 22288:1 22290:1 22291:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22436:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:2 22566:5 22584:1 22586:3 22589:2 22643:1 22687:1 22727:1 22737:1 22759:1 22777:1 22781:3 22791:1 22796:1 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22880:1 22882:2 22919:2 22926:1 22940:1 22946:3 22950:1 22951:1 22964:1 22972:1 22996:1 22997:2 23001:1 23016:1 23021:1 23027:1 23031:1 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23097:1 23098:1 23106:2 23109:1 23116:1 23120:1 23129:1 23157:2 23191:1 23226:1 23227:1 23237:2 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23353:1 23385:2 23393:1 23414:1 23445:1 23447:1 23456:1 23478:1 23487:3 23488:1 23490:1 23493:1 23502:1 23527:1 23528:1 23542:2 23555:1 23558:1 23573:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:3 23695:1 23725:2 23736:1 23776:2 23780:1 23787:1 23841:1 23856:2 23862:4 23870:1 23876:2 23897:1 23904:6 23942:1 23960:1 23970:1 23994:1 24000:1 24002:1 24009:1 24015:1 24021:1 24022:2 24033:1 24037:1 24057:1 24074:1 24078:1 24079:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24197:1 24198:1 24202:1 24215:1 24247:2 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24410:1 24412:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24615:1 24636:4 24639:1 24643:1 24652:3 24665:1 24673:2 24689:1 24701:2 24704:2 24708:1 24716:1 24737:1 24759:1 24767:1 24794:1 24800:1 24801:1 24817:1 24825:1 24834:1 24851:1 24854:3 24866:1 24867:2 24871:2 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24911:2 24927:1 24928:3 24936:1 24944:1 24955:1 24961:2 24962:1 24989:1 24992:1 25019:1 25024:1 25064:4 25065:1 25083:1 25094:1 25103:1 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25171:1 25180:1 25188:1 25191:1 25212:1 25225:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:1 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25473:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:2 25599:1 25619:7 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25735:1 25740:2 25750:1 25753:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25866:1 25867:1 25872:1 25873:1 25878:1 25910:4 25929:3 25934:1 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26116:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26288:1 26290:2 26293:3 26302:1 26349:1 26356:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26434:1 26451:1 26463:3 26474:1 26483:1 26489:2 26506:1 26535:1 26540:1 26557:1 26559:1 26564:3 26609:1 26613:1 26615:1 26629:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26746:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:5 26804:1 26805:1 26809:3 26811:1 26815:1 26816:1 26819:1 26823:1 26826:2 26831:1 26840:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26947:1 26950:1 26960:1 26966:1 26967:1 26998:1 27016:1 27046:2 27055:1 27073:1 27089:3 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:1 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27355:2 27361:1 27378:1 27379:1 27389:1 27393:4 27404:1 27415:1 27419:1 27431:1 27433:1 27439:1 27450:2 27454:2 27456:1 27460:2 27465:1 27469:10 27475:1 27491:1 27501:1 27504:1 27505:6 27520:6 27524:1 27546:1 27573:1 27591:1 27598:4 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27662:1 27668:9 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27788:1 27799:1 27815:1 27818:1 27846:1 27860:1 27862:1 27867:2 27871:1 27872:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27952:2 27954:1 27955:1 27984:1 27991:1 27999:1 28010:1 28011:2 28017:2 28024:1 28041:1 28058:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28151:2 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28224:1 28226:2 28239:1 28251:1 28270:1 28280:1 28297:1 28309:1 28325:1 28340:2 28351:1 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:5 28544:1 28550:2 28559:1 28561:1 28585:2 28593:1 28611:2 28627:3 28671:2 28682:1 28684:1 28694:2 28695:1 28701:3 28709:2 28711:2 28718:1 28743:1 28756:1 28760:4 28769:1 28783:1 28796:1 28797:1 28808:1 28811:2
12 2:1 41:1 43:1 45:1 56:1 71:2 88:1 94:1 109:4 118:1 144:1 169:1 189:1 195:1 205:2 208:1 226:1 229:2 238:1 288:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 572:1 605:3 611:1 635:1 650:2 670:1 692:1 693:1 695:2 697:2 732:2 741:1 791:1 796:1 811:1 830:1 867:7 872:1 876:1 880:1 885:1 890:4 895:1 911:2 915:2 919:1 928:2 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1059:1 1069:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1171:1 1190:1 1191:2 1196:1 1201:2 1209:3 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1359:1 1361:1 1404:5 1450:1 1452:1 1453:5 1456:1 1460:7 1463:1 1464:1 1466:1 1480:1 1482:1 1502:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1548:1 1552:1 1556:1 1559:1 1563:2 1566:3 1571:1 1575:1 1585:1 1630:2 1631:2 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:2 1758:1 1781:1 1793:1 1796:1 1802:1 1806:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1876:2 1880:1 1885:1 1897:2 1918:1 1931:1 1961:1 1987:1 1989:4 1990:1 2012:1 2021:1 2023:1 2033:1 2034:2 2054:1 2061:1 2065:1 2078:1 2102:4 2127:1 2143:1 2150:1 2172:1 2174:5 2185:2 2188:1 2199:1 2202:2 2216:1 2229:1 2230:1 2238:2 2240:2 2241:2 2243:1 2245:5 2248:2 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:2 2260:1 2262:1 2264:1 2265:5 2266:1 2268:1 2273:1 2275:1 2281:2 2286:1 2303:1 2334:6 2344:2 2346:1 2358:1 2359:1 2372:1 2379:1 2407:2 2411:1 2440:1 2442:1 2446:1 2466:1 2475:1 2490:2 2502:1 2506:1 2509:4 2527:1 2533:1 2537:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:4 2775:2 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:1 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3084:1 3085:1 3096:1 3112:1 3115:3 3116:1 3159:1 3166:1 3187:1 3188:1 3196:1 3202:1 3216:1 3220:1 3237:2 3253:1 3268:1 3283:2 3294:8 3300:1 3348:1 3351:1 3354:1 3366:1 3376:1 3398:1 3403:1 3405:1 3406:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3580:1 3583:1 3586:2 3588:1 3606:1 3623:1 3630:4 3635:1 3638:1 3641:1 3642:1 3646:1 3656:1 3659:1 3660:1 3706:4 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3784:1 3793:1 3805:1 3807:1 3816:1 3849:1 3850:3 3854:1 3858:1 3867:1 3870:1 3879:3 3884:1 3886:1 3900:1 3906:1 3911:1 3912:1 3919:1 3921:1 3933:1 3935:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:1 4058:1 4092:1 4096:1 4126:5 4127:1 4132:3 4138:1 4146:1 4173:1 4191:5 4193:1 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:2 4268:2 4296:1 4308:1 4354:2 4379:1 4386:1 4400:1 4401:1 4418:1 4433:2 4452:1 4462:1 4463:1 4470:2 4481:2 4525:1 4556:2 4566:1 4569:1 4575:1 4586:1 4587:1 4594:1 4621:3 4652:1 4672:1 4679:1 4681:1 4706:1 4749:1 4781:1 4795:10 4796:3 4814:1 4818:1 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4936:1 4938:1 4940:2 4943:3 4948:1 4949:3 4951:2 4953:2 4971:1 4979:1 4983:1 5010:3 5025:1 5035:1 5048:1 5078:1 5141:2 5150:1 5179:1 5186:1 5201:1 5210:1 5219:3 5223:1 5233:3 5257:1 5261:6 5294:8 5354:1 5373:1 5386:2 5419:1 5437:1 5447:1 5458:1 5464:2 5466:1 5470:1 5492:1 5495:1 5513:1 5515:1 5516:1 5524:1 5539:1 5553:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:2 5625:1 5630:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:2 5910:7 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6024:1 6028:3 6061:1 6068:1 6077:2 6099:1 6120:1 6148:4 6155:1 6158:1 6163:1 6170:1 6212:2 6227:4 6230:2 6232:2 6236:3 6239:1 6246:1 6247:1 6249:1 6252:1 6253:5 6254:9 6257:1 6258:3 6259:1 6305:1 6311:2 6334:1 6376:1 6387:2 6398:1 6403:2 6434:2 6456:2 6458:1 6464:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:2 6568:1 6612:1 6613:1 6615:2 6616:1 6630:2 6643:2 6645:1 6654:4 6679:1 6683:1 6684:1 6686:1 6690:1 6726:1 6727:1 6758:1 6783:2 6786:1 6810:1 6831:1 6848:1 6863:1 6876:1 6899:1 6948:6 6951:2 6958:1 6976:1 7013:2 7024:1 7047:1 7056:2 7062:1 7070:1 7072:1 7073:2 7080:1 7089:1 7095:1 7114:1 7115:1 7179:1 7222:1 7238:1 7248:3 7256:2 7257:1 7258:1 7276:5 7277:2 7278:4 7290:1 7312:1 7325:1 7343:1 7372:2 7390:1 7399:1 7411:2 7415:1 7416:1 7447:8 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7476:1 7483:1 7504:2 7517:33 7532:6 7533:1 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:2 7712:1 7715:1 7723:2 7734:1 7738:1 7741:1 7744:1 7753:1 7794:1 7797:1 7817:1 7829:2 7884:1 7890:1 7894:1 7962:2 7974:1 7976:1 7979:6 8019:1 8021:2 8023:1 8031:1 8067:1 8083:1 8127:1 8132:1 8133:1 8143:1 8159:1 8167:1 8205:1 8213:1 8229:2 8233:1 8238:1 8241:1 8254:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:3 8349:2 8351:1 8358:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:3 8396:1 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:3 8474:1 8477:2 8482:1 8490:1 8494:1 8523:1 8602:1 8606:1 8620:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8837:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8923:4 8925:1 8938:1 8941:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:3 9008:1 9010:3 9012:3 9014:1 9015:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9165:1 9167:1 9169:2 9172:1 9179:1 9181:1 9189:1 9216:1 9232:7 9247:1 9270:2 9273:1 9274:2 9286:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9353:1 9355:2 9375:1 9376:2 9377:1 9382:1 9389:2 9411:1 9415:1 9443:1 9449:2 9453:3 9454:1 9460:1 9462:2 9490:7 9506:3 9507:1 9510:1 9512:1 9514:1 9517:1 9543:1 9616:1 9642:1 9646:4 9669:1 9682:1 9699:1 9700:4 9703:1 9706:1 9715:1 9734:1 9748:1 9753:3 9765:1 9813:1 9822:4 9824:1 9826:2 9828:1 9835:1 9852:1 9853:1 9869:1 9882:1 9886:1 9917:1 9944:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10076:1 10081:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10238:1 10244:3 10268:1 10273:1 10280:2 10283:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:7 10438:1 10439:1 10462:2 10473:1 10492:1 10496:1 10498:2 10532:1 10574:1 10656:1 10660:1 10682:2 10683:1 10685:5 10692:2 10701:1 10704:1 10706:1 10726:1 10737:1 10761:2 10793:1 10794:2 10810:3 10820:1 10825:2 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10926:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:2 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:5 11196:1 11208:3 11224:2 11230:1 11231:1 11236:1 11243:1 11247:2 11256:2 11273:1 11281:1 11307:1 11323:2 11328:1 11335:1 11341:1 11346:2 11353:1 11366:1 11371:4 11413:2 11419:2 11420:1 11425:1 11433:1 11435:1 11440:2 11443:1 11444:1 11447:1 11449:2 11456:1 11461:3 11500:1 11501:1 11504:2 11520:1 11529:1 11534:2 11542:1 11553:2 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11664:1 11666:1 11673:1 11676:1 11689:1 11705:1 11715:1 11725:1 11727:1 11742:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:1 11855:6 11877:1 11879:1 11880:1 11896:3 11905:2 11913:1 11918:2 11921:2 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:4 12043:1 12067:2 12077:1 12111:1 12114:1 12119:2 12133:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12248:1 12249:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12389:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:5 12543:2 12546:1 12552:1 12572:1 12592:1 12609:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:4 12857:2 12871:1 12877:1 12882:1 12895:1 12898:5 12905:1 12935:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:3 13095:1 13100:2 13115:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13229:1 13266:1 13306:4 13317:1 13322:1 13336:1 13342:1 13344:2 13347:1 13350:7 13351:1 13352:1 13368:2 13387:2 13401:2 13413:1 13414:1 13424:2 13431:1 13435:2 13462:1 13470:1 13477:3 13481:2 13483:1 13488:1 13489:4 13491:2 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:6 13623:1 13631:3 13640:1 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:1 13726:1 13728:1 13752:1 13755:1 13791:2 13792:1 13793:1 13795:4 13825:1 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13975:2 13992:2 14002:1 14005:1 14013:1 14021:1 14051:1 14058:1 14060:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:2 14172:2 14180:1 14184:1 14196:1 14213:4 14222:1 14233:1 14240:1 14253:4 14257:1 14278:1 14296:1 14309:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14381:1 14385:1 14396:1 14401:1 14406:4 14412:1 14415:1 14421:2 14436:1 14469:1 14487:1 14498:3 14512:1 14513:1 14528:1 14529:1 14532:2 14533:1 14543:1 14563:1 14612:1 14614:1 14633:1 14634:2 14637:3 14645:2 14651:1 14655:1 14659:1 14681:1 14725:1 14736:2 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14912:1 14919:1 14926:1 14927:2 14930:2 14931:1 14941:1 14958:1 14986:2 14993:1 15002:1 15005:1 15011:1 15015:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15150:1 15162:1 15178:1 15202:1 15207:1 15234:4 15235:1 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15271:1 15276:2 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:2 15378:1 15392:1 15400:2 15416:1 15421:1 15426:2 15433:1 15475:2 15481:1 15497:1 15518:1 15534:1 15566:1 15568:3 15579:1 15597:2 15628:1 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:2 15677:1 15682:1 15685:3 15686:1 15692:1 15696:1 15722:3 15727:1 15730:1 15742:2 15770:1 15771:1 15794:1 15801:1 15805:1 15820:3 15827:1 15829:2 15831:1 15842:1 15843:1 15861:1 15884:1 15900:1 15907:1 15912:1 15916:1 15935:1 15937:2 15941:2 15959:1 15997:1 16020:1 16031:1 16032:1 16048:2 16060:4 16071:1 16088:1 16096:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16222:1 16226:1 16243:1 16245:2 16284:1 16314:1 16394:1 16410:1 16429:4 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:2 16758:1 16769:1 16773:1 16776:1 16792:1 16817:1 16831:1 16833:1 16836:3 16856:1 16861:3 16888:1 16932:2 16947:1 16948:1 16950:1 16955:1 16956:1 16960:1 16964:2 16966:1 16988:1 17014:1 17015:2 17019:1 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17048:1 17066:2 17095:4 17110:1 17126:1 17130:1 17131:1 17152:2 17161:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17225:1 17228:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:3 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:3 17391:1 17396:1 17408:1 17415:1 17419:2 17420:1 17432:1 17434:2 17436:1 17440:1 17444:1 17462:1 17483:1 17487:1 17500:1 17520:1 17537:2 17547:1 17564:1 17570:1 17573:1 17603:2 17612:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17712:1 17714:1 17720:3 17763:1 17785:2 17797:1 17812:1 17822:1 17835:4 17842:1 17865:5 17889:1 17964:1 17985:1 17990:1 17993:7 18001:1 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:2 18136:1 18141:1 18160:1 18170:1 18203:2 18218:1 18223:2128 18226:1 18242:1 18245:1 18267:1 18271:1 18274:1 18286:1 18288:1 18326:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18536:1 18545:1 18567:1 18592:1 18598:1 18663:2 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18755:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18895:1 18918:1 18937:1 18947:1 18950:1 18970:2 18977:1 18982:1 18989:1 19004:1 19027:1 19029:8 19032:1 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:4 19189:1 19208:1 19210:1 19217:1 19222:1 19225:2 19245:2 19260:2 19272:1 19277:1 19278:2 19280:1 19282:1 19301:1 19319:2 19324:1 19327:1 19328:1 19341:1 19344:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19418:1 19419:1 19429:1 19435:1 19436:2 19482:1 19502:1 19527:1 19531:2 19533:2 19601:4 19645:1 19670:4 19680:4 19687:1 19689:1 19694:1 19717:2 19722:1 19726:1 19736:1 19746:2 19748:1 19754:1 19758:1 19764:1 19769:1 19770:1 19774:1 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:1 19856:1 19858:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:3 20011:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:1 20049:1 20068:1 20141:1 20169:1 20172:1 20175:2 20211:1 20226:1 20236:1 20256:1 20258:1 20262:1 20263:1 20273:1 20277:1 20280:2 20287:1 20305:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20381:1 20384:2 20391:1 20393:1 20398:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20521:1 20522:1 20538:1 20555:1 20556:1 20573:1 20582:1 20594:1 20604:2 20664:1 20671:1 20706:1 20712:1 20745:1 20752:2 20779:1 20785:1 20803:2 20842:1 20846:1 20857:1 20858:2 20863:1 20876:1 20878:1 20892:1 20899:2 20901:1 20929:1 20946:1 20953:1 20956:1 20957:1 20959:1 20973:1 20980:1 20990:1 20994:1 21009:1 21025:1 21043:1 21055:1 21097:1 21111:1 21137:2 21140:1 21153:1 21159:3 21168:1 21171:1 21175:2 21179:1 21185:6 21186:1 21198:3 21202:1 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21315:1 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21430:1 21432:1 21433:1 21442:1 21473:1 21476:2 21486:1 21492:1 21498:1 21514:1 21516:1 21517:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:3 21616:1 21622:2 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:3 21774:1 21781:2 21786:1 21788:1 21790:2 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:2 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:2 21959:2 21972:3 21985:2 21997:1 22020:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22095:1 22120:1 22126:1 22132:1 22140:1 22142:1 22144:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:6 22270:1 22274:1 22275:1 22279:1 22287:1 22288:1 22290:1 22291:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22436:1 22437:1 22447:1 22458:1 22490:2 22512:1 22546:2 22566:5 22584:1 22586:3 22589:2 22643:1 22651:1 22687:1 22727:1 22737:1 22759:1 22777:1 22781:3 22791:1 22796:2 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22880:1 22882:2 22919:2 22926:1 22940:1 22946:3 22950:1 22951:1 22964:1 22972:1 22996:1 22997:2 23001:1 23016:1 23021:1 23027:1 23031:2 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23097:1 23098:1 23106:3 23109:1 23116:1 23120:1 23129:1 23157:2 23165:1 23191:1 23226:1 23227:1 23237:2 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23353:1 23385:2 23393:1 23414:1 23445:1 23447:1 23456:1 23478:1 23487:3 23488:1 23490:1 23493:1 23502:1 23527:1 23528:1 23542:2 23555:1 23558:1 23573:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:3 23695:1 23725:2 23736:1 23776:2 23780:1 23787:1 23841:1 23856:2 23862:5 23870:1 23876:2 23897:1 23904:6 23942:1 23960:1 23970:1 23994:1 24000:1 24002:1 24009:1 24015:1 24021:2 24022:2 24033:1 24037:1 24057:1 24074:1 24078:1 24079:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24197:1 24198:1 24202:1 24215:1 24247:2 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24410:1 24412:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24615:1 24636:4 24639:1 24643:1 24652:3 24665:1 24673:2 24689:1 24701:2 24704:2 24708:1 24716:1 24737:1 24759:1 24762:1 24767:1 24794:1 24800:1 24801:1 24817:1 24825:1 24834:1 24851:1 24854:3 24866:1 24867:2 24871:2 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24910:1 24911:2 24927:1 24928:3 24936:1 24944:1 24955:1 24961:2 24962:1 24989:1 24992:1 25019:1 25024:1 25041:1 25064:5 25065:1 25083:1 25084:1 25094:1 25103:2 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25171:1 25180:1 25188:1 25191:1 25212:1 25225:1 25247:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:2 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25473:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:2 25599:1 25619:7 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25735:1 25740:2 25750:1 25753:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25866:1 25867:1 25872:1 25873:1 25878:1 25910:4 25929:3 25934:1 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26116:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26288:1 26290:2 26293:3 26302:1 26322:1 26342:1 26349:1 26356:1 26357:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26434:1 26451:1 26463:3 26474:1 26483:1 26489:2 26506:1 26535:2 26540:1 26557:1 26559:1 26564:3 26606:1 26609:1 26613:2 26615:1 26629:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26746:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:5 26804:1 26805:1 26809:3 26811:1 26815:1 26816:2 26819:1 26823:1 26826:2 26831:1 26840:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26919:1 26922:1 26923:2 26925:1 26947:1 26950:1 26960:1 26966:1 26967:1 26998:1 27016:1 27046:2 27055:1 27073:1 27089:3 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:3 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27355:2 27361:1 27378:1 27379:1 27389:1 27393:4 27404:1 27415:1 27419:1 27431:1 27433:1 27439:1 27450:2 27454:2 27456:1 27460:2 27465:1 27469:10 27475:1 27491:1 27501:1 27504:1 27505:6 27520:6 27524:1 27546:1 27573:1 27591:1 27598:5 27601:1 27605:1 27609:1 27624:2 27631:5 27641:1 27647:1 27662:1 27668:9 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27788:1 27799:1 27815:1 27818:1 27846:1 27860:1 27862:1 27867:2 27871:1 27872:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27952:2 27954:1 27955:1 27984:1 27991:1 27999:1 28010:2 28011:3 28017:2 28024:1 28041:1 28058:1 28060:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28151:2 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28224:1 28226:2 28239:1 28251:1 28270:1 28280:1 28297:1 28309:1 28325:1 28340:2 28351:1 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:5 28544:1 28550:2 28559:1 28561:1 28585:2 28593:1 28611:2 28613:1 28627:4 28671:2 28682:1 28684:1 28694:2 28695:1 28701:3 28709:2 28711:2 28718:1 28732:1 28743:1 28756:1 28760:4 28769:1 28783:1 28796:1 28797:1 28808:1 28811:2
12 2:1 41:1 43:1 45:1 56:1 71:2 88:1 94:1 109:4 118:1 144:1 169:1 189:1 195:1 205:2 208:1 226:1 229:2 238:1 288:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 572:1 605:3 611:1 635:1 650:2 670:1 692:1 693:1 695:2 697:2 732:2 741:1 791:1 796:1 811:1 830:1 867:7 872:1 876:1 880:1 885:1 890:4 895:1 902:1 911:2 915:2 919:1 928:2 947:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1058:1 1059:1 1069:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1138:1 1146:1 1171:1 1190:1 1191:2 1196:1 1201:2 1209:3 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1359:1 1361:1 1404:5 1450:1 1452:1 1453:5 1456:1 1460:8 1463:1 1464:1 1466:1 1480:1 1482:1 1502:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1548:1 1552:1 1556:1 1559:1 1563:2 1566:3 1571:1 1575:1 1585:1 1630:2 1631:2 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:2 1758:1 1781:1 1793:1 1796:1 1802:1 1806:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1871:1 1876:2 1880:1 1885:1 1897:2 1918:1 1931:1 1961:1 1987:1 1989:4 1990:1 2012:1 2021:1 2023:1 2033:1 2034:2 2054:1 2061:1 2065:1 2078:1 2102:4 2127:1 2143:1 2150:1 2172:1 2174:6 2185:3 2188:1 2199:1 2202:2 2216:1 2229:1 2230:1 2238:2 2240:2 2241:2 2243:1 2245:5 2248:2 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:2 2260:1 2262:1 2264:1 2265:6 2266:1 2268:1 2273:1 2275:2 2281:2 2286:1 2303:1 2334:6 2344:2 2346:1 2358:1 2359:1 2372:1 2379:1 2407:2 2411:1 2440:1 2442:1 2445:1 2446:1 2466:1 2475:1 2490:2 2502:1 2506:1 2509:4 2527:1 2533:1 2537:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2651:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:4 2768:1 2775:2 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:2 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3053:1 3084:1 3085:1 3096:1 3112:1 3115:3 3116:1 3159:1 3166:1 3187:1 3188:1 3196:1 3202:1 3216:1 3220:2 3237:2 3253:1 3268:1 3283:2 3294:8 3300:1 3348:1 3351:1 3354:1 3366:1 3376:1 3398:1 3403:1 3405:1 3406:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3575:1 3580:1 3583:1 3586:2 3588:1 3606:1 3623:1 3630:4 3635:1 3638:1 3641:1 3642:1 3646:1 3656:1 3659:1 3660:1 3705:1 3706:4 3731:2 3752:1 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3784:1 3793:1 3805:1 3807:1 3816:1 3849:1 3850:3 3854:1 3858:1 3867:1 3870:1 3879:3 3884:1 3886:1 3900:1 3906:1 3911:1 3912:1 3919:1 3921:1 3933:1 3935:1 3941:1 3945:1 3950:2 3954:3 3981:1 3990:1 4012:1 4031:1 4039:2 4047:2 4058:1 4092:1 4096:1 4126:5 4127:1 4132:3 4138:1 4146:1 4173:1 4191:5 4193:1 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:2 4268:2 4296:1 4308:1 4354:2 4379:1 4386:1 4400:1 4401:1 4418:1 4433:2 4452:1 4462:1 4463:1 4468:1 4470:2 4481:2 4525:1 4556:2 4566:1 4569:1 4575:1 4586:1 4587:1 4594:1 4621:3 4652:1 4672:1 4679:1 4681:1 4706:1 4749:1 4781:1 4795:11 4796:3 4814:1 4818:1 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:1 4931:1 4935:1 4936:1 4938:1 4940:2 4943:3 4948:1 4949:3 4951:2 4953:2 4971:1 4979:1 4983:1 5010:4 5025:1 5035:1 5048:1 5078:1 5141:2 5150:1 5179:1 5186:1 5201:1 5210:1 5219:3 5223:1 5233:3 5257:1 5261:6 5294:8 5328:1 5354:1 5373:1 5386:2 5419:1 5437:2 5447:1 5458:1 5464:2 5466:1 5470:1 5492:1 5495:1 5513:1 5515:1 5516:1 5524:1 5539:1 5553:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:2 5625:1 5630:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:2 5910:7 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:1 6001:1 6002:1 6024:1 6028:3 6038:1 6061:1 6068:1 6077:2 6099:1 6120:1 6148:4 6155:1 6158:1 6163:1 6170:1 6212:2 6227:4 6230:2 6232:2 6236:3 6239:1 6246:1 6247:1 6249:1 6252:1 6253:5 6254:10 6257:1 6258:3 6259:1 6305:1 6311:2 6334:1 6376:1 6387:2 6398:1 6403:2 6434:2 6456:2 6458:1 6464:1 6480:1 6501:1 6515:1 6528:1 6537:2 6543:1 6544:1 6549:1 6553:2 6568:1 6612:1 6613:1 6615:2 6616:1 6630:2 6643:2 6645:1 6654:4 6679:1 6683:1 6684:1 6686:1 6690:1 6726:1 6727:1 6758:1 6783:2 6786:1 6810:1 6818:1 6831:1 6848:1 6863:1 6876:1 6899:1 6948:6 6951:2 6958:1 6976:1 7013:2 7024:1 7047:1 7056:2 7062:1 7070:1 7072:1 7073:2 7080:1 7089:1 7095:1 7114:1 7115:1 7179:1 7222:1 7238:1 7248:3 7256:2 7257:1 7258:1 7276:5 7277:2 7278:4 7290:1 7312:1 7325:1 7335:1 7343:1 7372:2 7390:1 7399:1 7411:2 7415:1 7416:1 7447:8 7448:6 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7476:1 7483:1 7504:2 7517:35 7532:6 7533:2 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:2 7704:1 7712:1 7715:1 7723:2 7734:2 7738:1 7741:1 7744:1 7753:1 7794:1 7797:1 7817:1 7829:2 7884:1 7890:1 7894:1 7962:2 7974:1 7976:1 7979:7 8019:1 8021:2 8023:1 8031:1 8067:1 8083:1 8127:1 8132:1 8133:1 8143:1 8159:1 8167:1 8205:1 8213:1 8229:2 8233:1 8238:1 8241:1 8254:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:3 8349:2 8351:1 8358:1 8359:1 8362:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:3 8396:1 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:3 8474:1 8477:2 8482:1 8490:1 8494:1 8523:1 8549:1 8602:1 8606:1 8615:1 8620:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8837:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8923:4 8925:1 8938:1 8941:1 8954:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:3 9008:1 9010:3 9012:3 9014:1 9015:1 9037:1 9038:1 9052:1 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9165:1 9167:1 9169:2 9172:1 9179:1 9181:1 9185:1 9189:1 9216:1 9232:7 9247:1 9270:2 9273:1 9274:2 9286:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9353:1 9355:2 9375:1 9376:2 9377:1 9382:1 9389:2 9411:1 9415:1 9443:1 9449:2 9453:3 9454:1 9460:1 9462:2 9490:8 9506:3 9507:1 9510:1 9512:1 9514:1 9517:1 9543:1 9616:1 9642:1 9646:4 9669:1 9682:1 9697:1 9699:1 9700:5 9703:1 9706:1 9715:1 9734:1 9748:1 9753:3 9765:1 9813:1 9822:4 9824:1 9826:2 9828:1 9835:1 9852:1 9853:1 9869:1 9882:1 9886:1 9917:1 9944:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10076:1 10081:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10238:1 10244:3 10268:1 10273:1 10280:2 10283:2 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:7 10438:1 10439:1 10462:2 10473:1 10492:1 10496:1 10498:2 10532:1 10574:1 10656:1 10660:1 10682:2 10683:1 10685:5 10692:2 10701:1 10702:1 10704:1 10706:1 10726:1 10737:1 10761:2 10793:1 10794:2 10810:3 10820:1 10825:2 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10926:1 10931:1 10933:1 10973:1 10982:1 10983:2 11043:1 11056:2 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:5 11196:1 11208:3 11224:2 11230:1 11231:1 11236:1 11243:1 11247:2 11256:3 11273:1 11281:1 11307:1 11323:2 11328:1 11335:2 11341:1 11346:2 11353:1 11366:1 11371:4 11390:1 11413:2 11419:2 11420:1 11425:1 11433:1 11435:1 11440:2 11442:1 11443:1 11444:1 11447:1 11449:2 11456:1 11461:3 11500:1 11501:1 11504:2 11520:1 11529:1 11534:2 11542:1 11543:1 11553:2 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11664:1 11666:2 11673:1 11676:1 11689:1 11705:1 11715:1 11725:1 11727:2 11742:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:1 11855:6 11877:1 11879:1 11880:1 11896:3 11905:2 11913:1 11918:2 11921:2 11926:1 11941:1 11971:2 11981:1 11987:1 11994:1 12010:4 12043:1 12067:2 12077:1 12111:1 12114:1 12119:2 12133:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12248:1 12249:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12389:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12457:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:5 12543:2 12546:1 12552:1 12572:1 12592:1 12609:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12787:1 12837:1 12838:1 12850:2 12851:4 12857:2 12871:1 12877:1 12881:1 12882:1 12895:1 12898:5 12905:1 12935:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13082:3 13095:1 13100:2 13115:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13226:1 13229:1 13266:1 13306:4 13317:1 13322:1 13336:1 13342:1 13344:2 13347:1 13350:7 13351:1 13352:1 13368:2 13387:2 13401:2 13407:1 13413:1 13414:1 13424:2 13431:1 13435:2 13462:1 13470:1 13477:3 13481:2 13483:1 13488:1 13489:4 13491:2 13497:1 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:6 13623:1 13631:3 13640:1 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:1 13726:1 13728:1 13739:1 13752:1 13755:1 13791:2 13792:1 13793:1 13795:4 13825:1 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13975:2 13992:2 14002:1 14005:1 14013:1 14021:1 14051:1 14058:1 14060:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:2 14172:2 14180:1 14184:1 14196:1 14213:4 14222:1 14233:1 14240:1 14253:4 14257:1 14278:1 14296:1 14309:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14365:1 14381:1 14385:1 14396:1 14401:1 14406:4 14412:1 14415:1 14421:2 14436:2 14469:1 14487:1 14498:3 14512:1 14513:1 14528:1 14529:1 14532:2 14533:1 14543:1 14563:1 14612:1 14614:1 14633:1 14634:2 14637:3 14645:2 14651:1 14655:1 14659:1 14681:1 14725:1 14736:2 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:1 14890:1 14907:1 14908:2 14912:1 14919:1 14926:1 14927:2 14930:2 14931:1 14941:1 14958:1 14986:2 14993:1 15002:1 15005:1 15011:2 15015:1 15029:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15150:1 15153:1 15162:1 15178:1 15202:1 15207:1 15234:4 15235:1 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15271:1 15276:2 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:2 15378:1 15392:1 15400:2 15416:1 15421:1 15426:2 15433:1 15475:2 15481:1 15497:1 15518:1 15534:1 15566:1 15568:3 15579:1 15597:2 15622:1 15628:1 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:2 15677:1 15682:1 15685:3 15686:1 15692:1 15696:1 15698:1 15722:4 15727:1 15730:1 15742:2 15770:1 15771:1 15794:1 15801:1 15805:1 15820:3 15827:1 15829:2 15831:1 15842:1 15843:1 15845:1 15861:1 15884:1 15900:1 15907:1 15912:1 15916:1 15935:1 15937:2 15941:2 15959:1 15997:1 16020:1 16031:1 16032:1 16048:2 16060:4 16071:1 16088:1 16096:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16222:1 16226:1 16243:1 16245:2 16247:1 16284:1 16314:1 16319:1 16394:1 16410:1 16429:4 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16686:1 16688:1 16714:1 16730:1 16739:1 16749:2 16758:1 16769:1 16773:1 16776:1 16792:1 16817:1 16831:1 16833:1 16836:3 16856:1 16861:3 16888:1 16932:2 16947:1 16948:1 16950:1 16955:1 16956:1 16960:1 16964:2 16966:1 16988:1 17014:1 17015:2 17019:1 17021:1 17026:1 17029:1 17039:1 17044:1 17046:1 17048:1 17066:2 17095:4 17110:1 17126:1 17130:1 17131:1 17152:2 17161:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17224:1 17225:1 17228:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:3 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:3 17391:1 17396:1 17408:1 17415:1 17419:2 17420:1 17432:1 17434:2 17436:1 17440:1 17444:1 17462:1 17483:1 17487:3 17500:2 17520:1 17537:2 17547:1 17564:1 17570:1 17573:1 17603:2 17612:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17712:1 17714:1 17720:4 17763:1 17785:2 17797:1 17812:1 17822:1 17835:4 17842:1 17865:5 17889:1 17899:1 17964:1 17985:1 17990:1 17993:7 18001:1 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:2 18136:1 18141:1 18160:1 18170:1 18203:2 18218:1 18223:2169 18226:1 18242:1 18245:1 18267:1 18271:1 18274:1 18286:1 18288:1 18326:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18536:1 18545:1 18567:1 18575:1 18592:1 18598:1 18663:2 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18755:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:2 18838:1 18863:1 18868:1 18871:4 18895:1 18918:1 18937:1 18947:1 18950:1 18970:2 18977:1 18982:1 18989:2 18992:1 19004:1 19027:2 19029:8 19032:1 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:4 19189:1 19208:1 19210:1 19217:1 19222:1 19225:2 19245:2 19260:2 19272:1 19277:1 19278:2 19280:1 19282:1 19298:1 19301:1 19319:2 19324:1 19327:1 19328:1 19341:1 19344:1 19345:2 19359:1 19372:1 19391:1 19411:1 19415:3 19418:1 19419:1 19429:1 19435:1 19436:2 19480:1 19482:1 19502:1 19527:1 19531:2 19533:2 19601:4 19645:1 19670:4 19680:4 19687:1 19689:1 19694:1 19706:1 19717:2 19722:1 19726:1 19736:1 19746:2 19748:1 19754:1 19758:1 19764:1 19769:1 19770:1 19774:1 19786:1 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:1 19856:1 19858:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:3 20011:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:2 20049:1 20068:1 20077:1 20141:1 20169:1 20172:1 20175:2 20211:1 20226:1 20236:1 20256:1 20258:1 20262:1 20263:1 20273:1 20277:1 20280:2 20282:1 20287:1 20305:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20381:1 20384:3 20391:1 20393:2 20398:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20521:1 20522:1 20538:1 20555:1 20556:1 20573:1 20582:1 20594:1 20604:2 20664:1 20671:1 20706:1 20712:1 20745:1 20752:2 20779:1 20785:1 20803:2 20842:1 20846:1 20857:1 20858:2 20863:1 20876:1 20878:1 20892:1 20899:2 20901:1 20929:1 20946:1 20953:1 20956:1 20957:1 20959:1 20973:1 20980:1 20990:1 20994:1 21009:1 21025:1 21043:1 21055:1 21092:1 21097:1 21111:2 21137:2 21140:1 21153:1 21159:3 21168:1 21171:1 21175:2 21179:1 21185:7 21186:1 21198:3 21202:1 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21315:1 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21430:1 21432:1 21433:1 21442:1 21473:1 21476:2 21486:1 21492:1 21498:1 21514:1 21516:1 21517:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:3 21616:1 21622:2 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21761:1 21765:4 21774:1 21781:2 21786:1 21788:1 21790:2 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:2 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:2 21959:2 21972:3 21985:2 21997:1 22020:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22095:1 22120:1 22126:1 22132:1 22140:1 22142:1 22144:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:6 22270:1 22274:1 22275:1 22279:2 22287:1 22288:1 22290:1 22291:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22436:1 22437:1 22447:1 22458:1 22490:2 22512:1 22533:1 22546:2 22566:5 22584:1 22586:3 22589:2 22643:1 22651:1 22687:1 22727:1 22737:1 22759:1 22777:1 22781:3 22791:1 22796:2 22799:1 22809:2 22812:1 22818:2 22847:2 22860:1 22861:1 22870:1 22871:1 22880:1 22882:2 22919:2 22926:1 22940:1 22946:3 22950:1 22951:1 22964:1 22972:1 22996:1 22997:2 23001:1 23016:1 23021:1 23027:1 23031:2 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23097:1 23098:1 23106:3 23109:1 23116:1 23120:1 23129:1 23157:2 23159:1 23165:1 23191:1 23226:1 23227:1 23237:2 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23338:1 23353:1 23385:2 23393:1 23414:1 23445:1 23447:1 23456:1 23478:1 23487:4 23488:1 23490:1 23493:1 23502:1 23527:1 23528:1 23542:2 23555:1 23558:1 23573:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:1 23672:1 23684:1 23688:4 23695:1 23725:2 23736:1 23776:2 23780:1 23787:2 23841:1 23856:2 23862:5 23870:1 23876:2 23897:1 23904:6 23942:1 23960:1 23970:1 23994:1 24000:1 24002:1 24009:1 24015:1 24021:2 24022:2 24033:1 24037:1 24057:1 24074:1 24078:1 24079:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24197:2 24198:1 24202:1 24215:1 24247:2 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24410:1 24412:1 24479:1 24499:1 24574:2 24589:1 24600:3 24603:1 24615:1 24636:4 24639:1 24643:1 24652:3 24665:1 24673:2 24689:1 24701:2 24704:2 24708:1 24716:1 24737:1 24759:1 24762:1 24767:1 24794:1 24800:1 24801:1 24817:1 24825:1 24834:1 24851:1 24854:3 24866:1 24867:2 24871:2 24887:1 24888:1 24892:1 24894:1 24895:1 24905:2 24907:1 24910:1 24911:2 24927:1 24928:3 24936:1 24944:1 24955:1 24961:2 24962:1 24989:1 24992:1 25019:1 25024:1 25041:1 25064:5 25065:1 25083:1 25084:1 25094:1 25103:2 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25171:1 25180:1 25188:1 25191:1 25212:1 25225:1 25247:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:2 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25473:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:2 25599:1 25619:7 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25735:1 25740:2 25750:1 25753:1 25757:1 25777:1 25782:1 25825:1 25848:2 25851:1 25866:1 25867:1 25872:2 25873:1 25878:1 25910:4 25929:3 25934:1 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26116:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26288:1 26290:2 26293:3 26302:1 26322:1 26342:1 26349:1 26356:1 26357:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26434:1 26451:1 26463:3 26474:1 26483:1 26489:2 26506:1 26535:2 26540:1 26557:1 26559:1 26564:3 26606:1 26609:1 26613:2 26615:1 26629:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26746:1 26749:1 26750:1 26754:2 26759:1 26794:1 26801:5 26804:1 26805:1 26809:3 26811:1 26815:1 26816:2 26819:1 26823:1 26826:2 26831:1 26840:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26918:1 26919:1 26922:1 26923:2 26925:1 26947:1 26950:1 26960:1 26965:1 26966:1 26967:1 26998:1 27016:1 27046:2 27055:1 27073:1 27089:3 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:3 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27355:2 27361:1 27378:1 27379:1 27389:1 27393:4 27404:1 27415:1 27419:1 27431:1 27433:1 27439:1 27450:2 27454:2 27456:1 27460:2 27465:2 27469:11 27475:1 27491:1 27501:1 27504:1 27505:7 27520:6 27524:1 27546:1 27573:1 27591:1 27598:5 27601:1 27605:1 27609:1 27624:2 27631:5 27636:1 27641:1 27647:1 27662:1 27668:9 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27788:1 27799:1 27815:1 27818:1 27828:1 27846:1 27860:1 27862:1 27867:2 27871:1 27872:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27942:1 27952:2 27954:1 27955:1 27984:1 27991:1 27999:1 28010:2 28011:4 28017:2 28024:1 28041:1 28058:1 28060:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28151:2 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28224:1 28226:2 28239:1 28251:1 28270:1 28280:1 28297:1 28309:1 28325:1 28340:2 28351:1 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:6 28544:2 28550:2 28559:1 28561:1 28585:2 28593:1 28611:2 28613:1 28627:4 28671:2 28682:1 28684:1 28694:2 28695:1 28701:3 28709:2 28711:2 28718:1 28732:1 28743:1 28756:1 28760:4 28769:1 28783:1 28796:1 28797:1 28808:1 28811:2
12 2:1 41:1 43:1 45:1 56:1 71:2 88:1 94:1 109:4 118:1 144:1 169:1 189:1 195:1 205:2 208:1 226:1 229:2 238:1 288:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 572:1 605:3 611:1 635:1 650:2 670:1 692:1 693:1 695:2 697:2 732:2 741:1 791:1 796:1 811:1 830:1 867:7 872:1 876:1 880:1 885:1 890:4 895:1 902:1 911:2 915:2 919:1 928:2 947:2 951:1 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1058:1 1059:1 1069:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1116:1 1138:1 1146:1 1171:1 1190:1 1191:2 1193:1 1196:1 1201:2 1209:3 1214:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1298:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1359:1 1361:1 1363:1 1404:5 1450:1 1452:1 1453:5 1456:1 1460:8 1463:1 1464:1 1466:1 1480:1 1482:1 1502:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1548:1 1552:1 1556:1 1559:1 1563:2 1566:3 1571:1 1575:1 1585:1 1630:2 1631:2 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:2 1758:1 1781:1 1793:1 1796:1 1802:1 1806:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1871:1 1876:2 1880:1 1885:1 1897:2 1918:1 1931:1 1961:1 1987:1 1989:4 1990:1 2012:1 2021:1 2023:1 2033:1 2034:2 2054:1 2061:1 2065:1 2078:1 2102:4 2127:1 2143:1 2150:1 2172:1 2174:6 2185:3 2188:1 2199:1 2202:3 2216:1 2229:1 2230:1 2238:2 2240:2 2241:2 2243:1 2245:5 2248:2 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:2 2260:1 2262:1 2264:1 2265:6 2266:1 2268:1 2273:1 2275:2 2281:2 2286:1 2293:1 2303:1 2334:6 2344:2 2346:2 2358:1 2359:1 2372:1 2379:1 2407:2 2411:1 2429:1 2440:1 2442:1 2445:1 2446:1 2466:1 2475:1 2490:2 2502:1 2506:1 2509:4 2527:1 2533:1 2537:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2651:1 2671:1 2675:1 2704:4 2710:1 2713:1 2729:1 2731:1 2755:2 2758:1 2766:4 2768:1 2775:2 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:3 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3053:2 3084:1 3085:1 3096:1 3112:1 3115:3 3116:1 3159:1 3166:1 3187:1 3188:1 3196:1 3202:1 3216:1 3220:2 3237:2 3253:1 3268:1 3283:2 3294:8 3300:1 3348:1 3351:1 3354:1 3359:1 3366:1 3376:1 3398:1 3403:1 3405:1 3406:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3575:1 3580:1 3583:1 3586:2 3588:1 3606:1 3623:1 3630:4 3635:1 3638:1 3641:1 3642:1 3646:1 3656:1 3659:1 3660:1 3677:1 3705:1 3706:5 3730:1 3731:2 3752:2 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3784:1 3793:1 3805:1 3807:1 3816:1 3849:1 3850:3 3854:1 3858:1 3867:1 3870:1 3879:3 3884:1 3886:1 3900:1 3906:1 3911:1 3912:1 3919:1 3921:1 3933:1 3935:1 3941:1 3945:1 3950:3 3954:3 3981:1 3990:1 4005:1 4012:1 4031:1 4039:2 4047:2 4057:1 4058:1 4092:1 4096:1 4098:1 4126:5 4127:1 4132:3 4138:1 4146:1 4149:1 4173:1 4191:5 4193:2 4195:1 4204:1 4209:1 4211:1 4217:1 4248:1 4260:2 4268:2 4296:1 4308:1 4354:2 4379:1 4386:1 4400:1 4401:1 4418:3 4433:2 4452:1 4462:1 4463:1 4468:1 4470:3 4481:2 4525:1 4556:2 4566:1 4569:1 4575:1 4586:1 4587:1 4594:1 4621:4 4652:1 4672:1 4679:1 4681:1 4706:1 4749:1 4781:1 4795:12 4796:3 4814:1 4818:1 4832:2 4846:1 4906:6 4922:3 4923:2 4926:1 4930:2 4931:1 4935:1 4936:1 4938:1 4940:2 4943:3 4948:1 4949:3 4951:2 4953:2 4971:1 4979:1 4983:1 5010:4 5025:1 5035:1 5048:1 5078:1 5141:2 5150:1 5179:1 5186:1 5201:1 5210:1 5219:3 5223:1 5233:3 5257:1 5261:6 5294:8 5328:1 5354:1 5373:1 5386:2 5419:1 5437:2 5447:1 5458:1 5464:2 5466:1 5470:1 5492:1 5495:1 5513:1 5515:1 5516:1 5524:1 5539:1 5553:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:2 5625:1 5630:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:2 5910:7 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5973:2 6001:1 6002:1 6024:1 6028:3 6038:2 6061:1 6068:1 6077:2 6099:1 6120:1 6148:4 6155:1 6158:1 6163:1 6170:1 6212:2 6227:4 6230:2 6232:2 6236:3 6239:1 6246:1 6247:1 6249:1 6252:1 6253:5 6254:10 6257:1 6258:3 6259:1 6305:1 6311:2 6334:1 6376:1 6387:3 6398:1 6403:2 6426:1 6434:2 6456:2 6458:1 6464:1 6480:1 6501:1 6515:1 6528:2 6537:2 6540:1 6543:1 6544:1 6549:1 6553:2 6568:1 6612:1 6613:1 6615:2 6616:1 6630:2 6643:2 6645:1 6654:4 6679:1 6683:1 6684:1 6686:1 6690:1 6726:1 6727:1 6758:1 6783:2 6786:1 6810:1 6818:1 6831:1 6848:1 6863:1 6876:1 6899:1 6948:6 6951:2 6958:1 6976:1 7008:1 7013:2 7024:1 7047:1 7056:2 7062:1 7070:1 7072:1 7073:3 7080:1 7089:1 7095:1 7114:1 7115:1 7179:1 7222:1 7238:1 7248:3 7256:2 7257:1 7258:1 7276:5 7277:2 7278:4 7290:1 7305:1 7312:1 7325:1 7335:1 7343:1 7372:2 7390:1 7399:1 7411:2 7415:1 7416:1 7447:11 7448:8 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7476:1 7483:1 7504:2 7517:36 7532:6 7533:3 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:2 7704:1 7712:1 7715:1 7723:3 7734:2 7738:1 7741:1 7744:1 7753:1 7794:1 7797:1 7817:1 7829:2 7884:1 7890:1 7894:1 7962:2 7974:1 7976:1 7979:7 8019:1 8021:2 8023:1 8031:1 8067:1 8083:1 8120:1 8127:1 8132:1 8133:1 8143:1 8159:1 8167:1 8205:1 8213:1 8229:2 8233:1 8238:1 8241:1 8254:1 8268:1 8273:1 8279:1 8305:1 8307:1 8348:3 8349:2 8351:1 8358:1 8359:1 8362:2 8365:1 8366:1 8367:1 8384:1 8391:1 8395:3 8396:1 8403:1 8406:1 8421:1 8422:1 8434:1 8437:2 8447:1 8458:3 8474:1 8477:3 8482:1 8490:1 8494:1 8521:1 8523:1 8549:1 8602:1 8606:1 8615:2 8620:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8837:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8920:1 8923:4 8925:1 8938:1 8941:1 8954:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:3 9008:1 9010:4 9012:3 9014:1 9015:1 9037:1 9038:1 9052:2 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9165:1 9167:1 9169:2 9172:1 9179:1 9181:1 9185:1 9189:1 9216:1 9232:7 9247:1 9263:1 9270:2 9273:1 9274:2 9286:1 9287:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9353:1 9355:2 9375:1 9376:2 9377:1 9382:1 9389:2 9411:1 9415:1 9443:1 9449:2 9453:3 9454:1 9460:1 9462:2 9490:8 9506:3 9507:1 9510:1 9512:1 9514:1 9517:1 9543:1 9616:1 9631:1 9642:1 9646:4 9669:1 9682:1 9697:1 9699:1 9700:5 9703:1 9706:1 9715:2 9734:1 9748:1 9753:3 9765:1 9813:1 9822:4 9824:1 9826:2 9827:1 9828:1 9835:1 9852:1 9853:1 9869:1 9882:1 9886:1 9917:1 9944:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10076:1 10081:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10238:1 10244:3 10268:1 10273:1 10280:2 10283:2 10296:1 10298:1 10303:1 10305:4 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:7 10438:1 10439:1 10462:3 10473:1 10492:1 10496:1 10498:2 10532:1 10574:1 10656:1 10660:1 10682:2 10683:2 10685:5 10692:2 10701:1 10702:1 10704:1 10706:1 10726:1 10737:1 10761:3 10793:1 10794:2 10810:3 10820:1 10825:2 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10926:1 10931:1 10933:1 10973:1 10982:2 10983:2 11043:1 11056:2 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:6 11196:1 11208:3 11224:2 11230:1 11231:1 11236:1 11243:1 11247:2 11256:3 11273:1 11281:1 11307:1 11323:2 11328:1 11335:3 11341:1 11346:2 11353:1 11366:1 11371:4 11390:1 11413:2 11419:2 11420:1 11425:1 11433:1 11435:1 11440:3 11442:1 11443:1 11444:1 11447:1 11449:2 11451:1 11456:1 11461:3 11500:1 11501:1 11504:2 11520:1 11529:1 11534:2 11542:1 11543:1 11553:2 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11664:1 11666:2 11673:1 11676:1 11689:1 11705:1 11715:1 11725:2 11727:2 11742:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:2 11855:6 11877:1 11879:1 11880:1 11896:3 11905:2 11913:1 11918:2 11921:2 11926:1 11941:1 11971:3 11981:1 11987:1 11994:1 12010:4 12043:2 12067:2 12077:1 12111:1 12114:1 12119:2 12133:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12248:1 12249:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12389:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12457:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:5 12543:2 12546:1 12552:1 12572:1 12592:1 12609:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12783:1 12787:1 12837:1 12838:1 12850:2 12851:4 12857:3 12871:1 12877:1 12881:1 12882:1 12895:1 12898:5 12905:1 12935:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13064:1 13082:3 13095:1 13100:2 13115:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13226:1 13229:1 13266:1 13306:4 13317:1 13322:1 13336:1 13337:1 13342:1 13344:2 13347:1 13350:7 13351:1 13352:1 13368:2 13387:2 13401:2 13407:1 13413:1 13414:1 13424:2 13431:1 13435:2 13462:1 13470:1 13477:3 13481:2 13483:1 13488:1 13489:4 13491:2 13497:2 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:6 13623:1 13631:3 13640:1 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:2 13726:1 13728:1 13739:1 13752:1 13755:1 13791:2 13792:1 13793:1 13795:4 13825:1 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13975:2 13992:2 14002:1 14005:1 14013:1 14021:1 14051:1 14058:1 14060:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:2 14172:2 14180:1 14184:1 14196:1 14213:4 14222:1 14233:1 14240:1 14253:4 14257:1 14278:1 14296:1 14309:1 14313:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14365:1 14381:1 14385:1 14396:1 14401:1 14406:4 14412:1 14415:1 14421:2 14436:3 14458:1 14469:1 14487:1 14498:3 14512:1 14513:1 14528:1 14529:1 14532:2 14533:2 14543:1 14563:1 14612:1 14614:1 14633:1 14634:2 14637:3 14645:3 14651:1 14655:1 14659:1 14681:1 14725:1 14736:2 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:2 14890:1 14907:1 14908:2 14912:1 14919:1 14926:1 14927:2 14930:2 14931:1 14941:1 14958:1 14986:3 14993:1 15002:1 15005:1 15011:2 15015:1 15029:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15150:1 15153:1 15162:1 15178:1 15202:1 15207:1 15234:4 15235:1 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15271:2 15276:2 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:2 15378:1 15392:1 15400:2 15416:1 15421:1 15426:2 15433:1 15475:2 15481:1 15497:1 15518:1 15534:1 15566:1 15568:3 15579:1 15597:2 15622:1 15628:1 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:2 15677:1 15682:1 15685:3 15686:1 15692:1 15696:1 15698:1 15722:5 15727:1 15730:1 15742:2 15770:1 15771:1 15794:1 15801:1 15805:1 15820:3 15827:1 15829:2 15831:1 15842:1 15843:1 15845:1 15861:1 15884:1 15900:1 15907:1 15912:1 15916:2 15935:1 15937:2 15941:2 15959:1 15997:1 16020:1 16031:1 16032:1 16048:3 16060:4 16071:1 16088:1 16096:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16222:1 16226:1 16243:1 16245:2 16247:2 16284:1 16314:1 16319:1 16394:1 16410:1 16429:4 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16671:1 16686:1 16688:1 16714:1 16729:1 16730:1 16739:1 16749:2 16758:1 16769:1 16773:1 16776:1 16792:1 16817:1 16831:1 16833:1 16836:3 16856:1 16861:3 16888:1 16932:2 16947:1 16948:1 16950:1 16955:1 16956:1 16960:1 16964:2 16966:1 16988:1 17014:1 17015:3 17019:1 17021:1 17026:1 17029:1 17039:1 17044:1 17046:2 17048:1 17066:2 17095:4 17110:1 17126:1 17130:1 17131:1 17152:2 17161:1 17164:1 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17224:1 17225:1 17228:2 17229:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:3 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:3 17391:1 17396:1 17408:1 17415:1 17419:2 17420:1 17432:1 17434:2 17436:1 17440:2 17444:1 17462:1 17483:1 17487:4 17500:3 17520:1 17537:2 17547:1 17564:1 17570:1 17573:1 17603:2 17612:1 17628:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17712:1 17714:1 17720:4 17763:1 17785:3 17797:1 17812:1 17822:1 17835:4 17842:1 17865:5 17889:1 17899:1 17964:1 17985:1 17990:1 17993:7 18001:1 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:2 18136:1 18141:1 18148:1 18160:1 18170:1 18203:2 18218:1 18223:2220 18226:1 18242:1 18245:1 18267:1 18271:1 18274:1 18286:1 18288:1 18326:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18454:1 18536:1 18545:1 18567:1 18575:1 18592:1 18598:1 18663:2 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18755:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:3 18838:1 18863:1 18868:1 18871:4 18895:1 18918:1 18937:1 18947:2 18950:1 18970:2 18977:1 18982:1 18989:3 18992:1 19004:1 19027:2 19029:8 19032:1 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:4 19189:1 19208:1 19210:1 19217:1 19222:1 19225:2 19245:2 19260:2 19272:1 19277:1 19278:2 19280:1 19282:1 19298:1 19301:1 19319:2 19324:1 19327:1 19328:1 19341:1 19344:1 19345:2 19359:3 19372:1 19391:1 19411:1 19413:1 19415:3 19418:1 19419:1 19429:1 19435:1 19436:2 19480:1 19482:1 19502:1 19527:1 19531:2 19533:2 19601:4 19632:1 19645:2 19670:4 19680:4 19687:1 19689:1 19694:1 19706:1 19717:2 19722:1 19726:1 19736:1 19746:2 19748:1 19754:1 19758:1 19764:1 19769:1 19770:1 19774:1 19786:1 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:2 19856:1 19858:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:3 20011:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:2 20049:1 20068:1 20077:1 20141:1 20169:1 20172:1 20175:2 20211:1 20226:1 20236:1 20256:1 20258:1 20262:1 20263:1 20273:1 20277:1 20280:2 20282:1 20287:1 20305:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20381:1 20384:3 20386:1 20391:1 20393:3 20398:1 20399:1 20409:2 20411:1 20424:2 20436:2 20438:2 20448:1 20510:1 20512:1 20521:1 20522:1 20538:1 20555:1 20556:1 20573:1 20582:1 20594:1 20604:3 20664:1 20671:1 20706:1 20712:1 20745:1 20752:2 20779:1 20785:1 20803:2 20842:1 20846:1 20857:1 20858:2 20863:1 20876:1 20878:1 20892:1 20899:2 20901:1 20929:1 20946:1 20951:1 20953:1 20956:1 20957:1 20959:1 20973:1 20980:1 20990:1 20994:1 21009:1 21025:1 21043:1 21055:1 21092:1 21097:1 21111:3 21137:2 21140:1 21153:1 21159:3 21168:1 21171:1 21175:2 21179:1 21185:7 21186:1 21198:3 21202:1 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21315:1 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21430:1 21432:1 21433:1 21442:1 21473:1 21476:2 21486:1 21492:1 21498:1 21514:1 21516:1 21517:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:3 21616:1 21622:2 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21748:1 21758:1 21761:1 21765:4 21774:1 21781:2 21786:1 21788:1 21790:2 21792:2 21795:2 21803:1 21810:1 21815:1 21821:1 21838:1 21847:2 21862:1 21872:2 21914:2 21917:1 21919:1 21923:1 21924:1 21933:2 21959:2 21972:3 21985:3 21997:1 22020:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22095:1 22120:1 22126:1 22132:1 22140:1 22142:1 22144:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:6 22270:1 22274:1 22275:1 22279:2 22287:1 22288:1 22290:1 22291:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22436:1 22437:1 22447:1 22458:1 22490:2 22512:1 22533:1 22546:2 22566:5 22584:1 22586:3 22589:2 22643:1 22651:1 22687:1 22727:1 22737:1 22759:1 22777:1 22781:3 22791:1 22796:2 22799:1 22809:2 22812:1 22818:3 22847:2 22860:1 22861:1 22870:1 22871:1 22880:1 22882:2 22919:2 22926:1 22940:1 22946:3 22950:1 22951:1 22964:1 22972:1 22996:1 22997:2 23001:2 23016:1 23021:1 23027:1 23031:2 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23097:1 23098:1 23106:3 23109:1 23116:1 23120:1 23129:1 23157:2 23159:1 23165:1 23191:1 23226:1 23227:1 23237:2 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23338:1 23353:1 23385:2 23393:1 23414:1 23445:1 23447:1 23456:1 23478:1 23487:5 23488:1 23490:1 23493:1 23502:1 23527:1 23528:1 23542:2 23555:1 23558:1 23573:1 23580:1 23594:2 23595:1 23619:3 23627:1 23646:1 23656:1 23669:2 23672:1 23684:1 23688:4 23695:3 23725:2 23736:1 23745:1 23776:2 23780:1 23787:2 23841:1 23856:2 23862:5 23870:1 23876:2 23897:1 23904:6 23942:1 23960:1 23970:1 23994:1 24000:1 24002:1 24009:1 24015:1 24021:2 24022:2 24033:1 24037:1 24057:1 24074:1 24078:1 24079:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24197:2 24198:1 24202:1 24204:1 24215:1 24247:2 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24410:1 24412:1 24476:1 24479:1 24499:1 24574:3 24589:1 24600:3 24603:1 24615:1 24636:4 24639:1 24643:1 24652:3 24665:1 24673:2 24689:1 24701:2 24704:2 24708:1 24716:2 24737:1 24759:1 24762:1 24767:1 24794:1 24800:1 24801:1 24817:1 24825:1 24834:1 24851:1 24854:4 24864:1 24866:1 24867:2 24871:2 24887:1 24888:1 24890:1 24892:1 24894:1 24895:1 24905:2 24907:1 24910:1 24911:2 24921:1 24927:1 24928:3 24936:1 24944:1 24955:1 24961:2 24962:1 24978:1 24989:1 24992:1 25019:1 25024:1 25041:1 25064:5 25065:1 25083:1 25084:1 25092:1 25094:1 25103:2 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25171:1 25180:1 25188:1 25191:1 25212:2 25225:1 25247:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:1 25379:1 25406:2 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25473:1 25476:1 25478:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:2 25599:1 25619:7 25655:1 25660:2 25673:1 25692:1 25699:1 25728:1 25735:1 25740:3 25750:1 25753:1 25757:1 25764:1 25777:1 25782:1 25791:1 25825:1 25848:2 25851:1 25866:1 25867:1 25872:2 25873:1 25878:1 25910:4 25929:3 25934:1 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26116:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26288:1 26290:2 26293:3 26302:1 26322:1 26342:1 26349:1 26356:1 26357:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26434:1 26451:1 26463:3 26474:1 26483:1 26489:2 26506:1 26535:2 26540:1 26557:1 26559:1 26564:3 26606:1 26609:1 26613:2 26615:2 26629:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26746:1 26749:1 26750:1 26754:2 26759:1 26775:1 26794:1 26801:5 26804:1 26805:1 26809:3 26811:1 26815:1 26816:2 26819:1 26823:1 26826:2 26831:2 26840:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26918:1 26919:1 26922:1 26923:2 26925:1 26947:1 26950:1 26960:1 26965:1 26966:1 26967:1 26998:1 26999:1 27016:1 27046:2 27055:1 27073:1 27089:3 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:3 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27355:2 27361:1 27378:1 27379:1 27389:1 27393:4 27404:1 27415:1 27419:1 27431:1 27433:1 27439:1 27450:2 27454:2 27456:1 27460:2 27465:2 27469:12 27475:1 27491:1 27501:1 27504:1 27505:7 27520:6 27524:1 27546:1 27573:1 27591:1 27598:5 27601:1 27605:1 27609:1 27624:4 27631:5 27636:2 27641:1 27647:1 27662:1 27668:12 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27788:1 27799:1 27815:1 27818:1 27828:1 27846:1 27860:1 27862:1 27867:2 27871:1 27872:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27942:2 27952:2 27954:1 27955:1 27984:1 27991:1 27999:1 28010:2 28011:5 28017:2 28024:1 28041:1 28058:1 28060:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28151:2 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28224:1 28226:2 28239:2 28246:1 28251:1 28270:1 28280:1 28297:1 28309:1 28325:1 28340:2 28351:1 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:6 28544:2 28550:2 28559:1 28561:1 28585:2 28593:1 28611:2 28613:1 28627:4 28671:2 28682:1 28684:1 28694:2 28695:1 28701:3 28709:2 28711:2 28718:1 28732:1 28743:1 28756:1 28760:4 28769:1 28783:1 28796:1 28797:1 28808:1 28811:2
12 2:1 41:1 43:1 45:1 56:1 71:2 88:1 94:1 109:4 118:1 144:1 169:1 189:1 195:1 205:2 208:1 226:1 229:2 238:1 288:1 311:1 318:1 328:1 330:1 352:1 366:4 390:2 397:3 411:2 412:1 420:1 448:1 449:3 452:1 457:1 467:2 480:1 512:1 533:1 558:1 572:1 605:3 611:1 635:1 650:2 670:1 692:1 693:1 695:2 697:2 732:2 741:1 791:2 796:1 811:1 830:1 867:7 872:1 876:1 880:1 885:1 890:4 895:1 902:1 911:2 915:2 919:1 928:2 947:2 951:2 954:2 957:1 982:1 989:1 994:1 1026:1 1027:1 1030:1 1035:1 1058:1 1059:1 1069:1 1074:1 1078:1 1081:1 1088:1 1094:1 1108:1 1116:1 1138:1 1146:1 1171:1 1190:1 1191:2 1193:1 1196:1 1201:2 1209:3 1214:1 1223:1 1226:1 1228:1 1233:1 1246:2 1250:1 1278:2 1289:1 1298:1 1299:1 1304:1 1319:2 1331:3 1341:1 1345:1 1359:1 1361:1 1363:1 1404:6 1450:1 1452:1 1453:5 1456:1 1460:8 1463:1 1464:1 1466:1 1480:1 1482:1 1502:1 1509:1 1513:1 1533:1 1534:2 1539:1 1542:2 1548:1 1552:1 1556:1 1559:1 1563:2 1566:3 1571:1 1575:1 1585:1 1630:2 1631:2 1664:2 1667:1 1677:4 1689:2 1695:1 1701:1 1703:2 1704:1 1726:1 1753:2 1758:1 1781:1 1793:1 1796:1 1802:1 1806:1 1816:2 1818:1 1822:3 1824:1 1825:1 1827:1 1842:2 1853:1 1868:2 1869:1 1871:1 1876:2 1880:1 1885:1 1897:2 1918:1 1931:1 1961:1 1987:1 1989:4 1990:1 2012:1 2021:1 2023:1 2033:1 2034:3 2054:1 2061:1 2065:1 2078:1 2102:4 2127:1 2143:1 2150:1 2172:1 2174:6 2185:3 2188:1 2199:1 2202:3 2216:1 2229:1 2230:1 2238:2 2240:2 2241:2 2243:1 2245:5 2248:2 2249:2 2252:2 2253:2 2254:1 2255:1 2257:2 2259:2 2260:1 2262:1 2264:1 2265:6 2266:1 2268:1 2273:1 2275:2 2281:2 2286:1 2293:1 2303:1 2334:6 2344:2 2346:2 2358:1 2359:1 2372:1 2379:1 2407:2 2411:1 2429:1 2440:1 2442:1 2445:1 2446:1 2466:1 2475:1 2490:2 2502:1 2506:1 2509:4 2527:1 2533:1 2537:1 2562:1 2563:1 2570:1 2573:1 2582:1 2650:1 2651:1 2671:1 2675:1 2704:4 2710:1 2713:1 2724:2 2729:1 2731:1 2755:2 2758:1 2766:4 2768:1 2775:2 2819:1 2827:1 2841:1 2853:1 2869:5 2872:1 2878:1 2930:5 2949:1 2955:1 2962:1 2963:2 2975:1 2992:1 2997:1 3002:1 3008:1 3024:1 3030:1 3037:1 3051:1 3053:2 3084:1 3085:1 3096:1 3112:1 3115:3 3116:1 3159:1 3166:1 3187:1 3188:1 3196:1 3202:1 3216:1 3220:2 3237:2 3253:1 3268:1 3283:2 3294:8 3300:1 3348:1 3351:1 3354:1 3359:1 3366:1 3376:1 3398:1 3403:1 3405:1 3406:1 3419:1 3442:1 3447:1 3477:1 3483:1 3491:1 3510:2 3513:1 3544:1 3554:1 3556:1 3561:1 3567:1 3575:1 3580:1 3583:1 3586:2 3588:1 3606:1 3623:1 3630:4 3635:1 3638:1 3641:1 3642:1 3646:1 3656:1 3659:1 3660:1 3677:1 3705:1 3706:5 3730:1 3731:2 3752:2 3762:1 3772:1 3773:1 3775:3 3777:1 3779:2 3784:1 3793:1 3805:1 3807:1 3816:1 3849:1 3850:3 3854:1 3858:1 3867:1 3870:1 3879:3 3884:1 3886:1 3900:1 3906:1 3911:1 3912:1 3919:1 3921:1 3933:1 3935:1 3941:1 3945:1 3950:3 3954:3 3981:1 3990:1 4005:1 4012:1 4031:1 4034:1 4039:2 4047:2 4057:1 4058:1 4092:1 4096:1 4098:1 4126:5 4127:1 4132:3 4138:1 4146:1 4149:1 4173:1 4191:5 4193:2 4195:1 4204:1 4209:1 4211:1 4217:1 4229:2 4248:1 4260:2 4268:2 4288:1 4296:1 4308:1 4311:1 4354:2 4368:1 4379:1 4386:1 4400:1 4401:1 4418:3 4433:2 4452:1 4462:1 4463:1 4468:1 4470:3 4481:2 4525:1 4556:2 4566:1 4569:1 4575:1 4586:1 4587:1 4594:1 4621:4 4652:1 4672:1 4679:1 4681:1 4706:1 4749:1 4781:1 4795:12 4796:3 4814:1 4818:1 4832:2 4846:1 4854:2 4906:6 4922:3 4923:2 4926:1 4930:2 4931:1 4935:1 4936:1 4938:1 4940:2 4943:3 4948:1 4949:3 4951:2 4953:2 4971:1 4979:1 4983:1 5010:4 5025:1 5035:1 5048:1 5078:1 5141:2 5150:1 5179:1 5186:1 5201:1 5210:1 5219:3 5223:1 5233:3 5257:1 5261:6 5281:1 5294:8 5328:1 5354:1 5373:1 5386:2 5419:1 5437:2 5447:1 5458:1 5464:2 5466:1 5470:1 5492:1 5495:1 5513:1 5515:1 5516:1 5524:1 5539:1 5553:1 5565:1 5592:1 5612:1 5615:3 5621:1 5622:1 5624:2 5625:1 5630:1 5637:1 5640:1 5653:1 5659:1 5676:2 5680:1 5801:1 5826:1 5832:1 5864:1 5909:2 5910:8 5915:1 5934:1 5937:1 5946:1 5947:1 5954:2 5955:1 5963:1 5973:2 6001:1 6002:1 6024:1 6028:3 6038:2 6061:1 6068:1 6077:2 6099:1 6120:1 6148:4 6155:1 6158:1 6163:1 6170:1 6211:1 6212:2 6227:4 6230:2 6232:2 6236:3 6239:1 6246:1 6247:1 6249:1 6252:1 6253:5 6254:10 6257:1 6258:3 6259:1 6305:1 6311:2 6334:1 6376:1 6387:3 6398:1 6403:2 6426:1 6434:2 6456:2 6458:1 6464:1 6480:1 6501:1 6515:1 6528:2 6537:2 6540:1 6543:1 6544:1 6549:1 6553:2 6568:1 6612:1 6613:1 6615:2 6616:1 6630:2 6643:2 6645:1 6654:4 6679:1 6683:1 6684:1 6686:1 6690:1 6726:1 6727:1 6758:1 6783:2 6786:1 6799:1 6810:1 6818:1 6831:1 6833:1 6848:1 6863:1 6876:1 6899:1 6948:6 6951:2 6958:1 6976:1 7008:1 7013:2 7024:1 7047:1 7056:3 7062:1 7070:1 7072:1 7073:3 7080:1 7089:1 7093:1 7095:1 7114:1 7115:1 7179:1 7222:1 7238:1 7248:3 7256:3 7257:1 7258:1 7276:5 7277:2 7278:4 7285:1 7290:1 7304:1 7305:1 7312:1 7325:1 7335:1 7343:1 7372:2 7390:1 7399:1 7411:2 7415:1 7416:1 7447:12 7448:8 7455:1 7456:1 7463:1 7464:1 7468:1 7469:1 7471:2 7476:1 7483:1 7504:2 7517:36 7532:6 7533:5 7538:2 7543:1 7551:1 7575:1 7577:1 7586:1 7595:1 7609:2 7610:2 7634:2 7660:1 7695:2 7704:1 7712:1 7715:1 7720:2 7723:3 7734:2 7738:1 7741:1 7744:1 7753:1 7786:1 7794:1 7797:1 7817:1 7829:2 7884:1 7890:1 7894:1 7962:2 7974:1 7976:1 7979:7 8019:1 8021:2 8023:1 8031:1 8067:1 8083:1 8120:1 8127:1 8132:1 8133:1 8143:1 8159:1 8167:1 8205:1 8213:1 8229:3 8233:1 8238:1 8241:1 8254:1 8268:1 8273:1 8279:1 8305:1 8307:1 8330:1 8348:3 8349:2 8351:1 8355:1 8358:1 8359:1 8362:2 8363:1 8365:1 8366:1 8367:1 8384:1 8391:1 8395:3 8396:1 8403:1 8406:1 8421:1 8422:2 8434:1 8437:2 8447:1 8458:3 8474:1 8477:3 8482:1 8490:1 8494:1 8521:1 8523:1 8549:1 8590:1 8602:1 8606:1 8615:2 8620:1 8637:1 8653:2 8660:1 8662:1 8673:1 8694:1 8736:2 8748:1 8749:1 8754:1 8757:1 8769:2 8795:1 8822:1 8824:1 8837:1 8843:1 8844:2 8846:1 8869:1 8872:1 8875:1 8882:1 8901:1 8920:1 8923:4 8925:1 8938:1 8941:1 8954:1 8958:1 8966:2 8968:1 8969:1 8982:1 8984:2 8988:1 8997:1 9001:3 9008:1 9010:4 9012:3 9014:1 9015:1 9037:1 9038:1 9047:1 9052:2 9055:2 9072:1 9082:1 9084:1 9085:2 9090:1 9092:1 9102:1 9103:2 9136:1 9157:1 9165:1 9167:1 9169:2 9172:1 9179:1 9181:1 9185:1 9189:1 9216:1 9232:7 9247:1 9263:1 9270:2 9273:1 9274:2 9286:1 9287:1 9296:1 9298:1 9303:1 9316:3 9337:1 9342:1 9353:1 9355:2 9375:1 9376:2 9377:1 9382:1 9389:2 9411:1 9415:1 9443:1 9449:2 9453:3 9454:1 9460:1 9462:2 9490:8 9506:3 9507:1 9510:1 9512:1 9514:1 9517:1 9543:1 9616:1 9631:2 9642:1 9646:4 9669:1 9682:1 9697:1 9699:1 9700:5 9703:1 9706:1 9715:2 9734:1 9748:1 9753:3 9765:1 9813:1 9822:4 9824:1 9826:2 9827:1 9828:1 9835:1 9852:1 9853:1 9869:1 9882:1 9886:1 9895:1 9917:1 9944:1 9964:1 9968:1 9988:1 9991:1 9996:1 10017:1 10021:1 10022:1 10059:1 10069:1 10070:1 10076:1 10081:1 10093:2 10101:2 10116:1 10124:1 10176:1 10197:1 10204:3 10216:1 10238:1 10244:3 10268:1 10273:1 10280:2 10283:3 10296:1 10298:1 10303:1 10305:5 10308:1 10310:1 10320:2 10372:1 10404:1 10419:1 10428:7 10438:1 10439:1 10462:3 10473:1 10492:1 10496:1 10498:2 10532:1 10574:1 10656:1 10660:1 10682:2 10683:3 10685:5 10692:2 10701:1 10702:1 10704:1 10706:1 10726:1 10737:1 10761:3 10793:1 10794:2 10810:3 10820:1 10825:2 10850:1 10856:1 10857:1 10859:1 10870:1 10877:1 10879:1 10895:1 10914:1 10915:1 10920:1 10924:1 10926:1 10931:1 10933:1 10973:1 10982:2 10983:2 11001:1 11043:1 11056:2 11064:1 11065:1 11067:1 11087:1 11095:1 11109:1 11116:1 11122:2 11144:1 11152:6 11196:1 11208:3 11224:2 11230:1 11231:1 11236:1 11243:1 11247:2 11256:3 11273:1 11281:1 11307:1 11323:2 11328:1 11335:3 11341:1 11346:2 11353:1 11366:1 11371:4 11390:1 11413:2 11419:2 11420:1 11425:1 11433:1 11435:1 11440:3 11442:1 11443:1 11444:1 11447:1 11449:2 11451:1 11456:1 11461:3 11500:1 11501:1 11504:2 11520:1 11529:1 11534:2 11542:1 11543:1 11553:2 11586:1 11598:1 11599:1 11625:1 11638:1 11644:1 11658:2 11664:1 11666:2 11673:1 11676:1 11689:1 11705:1 11715:1 11725:2 11727:2 11742:1 11744:1 11755:1 11764:1 11783:1 11833:1 11852:2 11855:6 11877:1 11879:1 11880:1 11896:3 11905:2 11913:1 11918:2 11921:2 11926:1 11941:1 11971:3 11981:1 11987:1 11994:1 12010:4 12029:2 12043:3 12067:2 12077:1 12111:1 12114:1 12119:2 12133:1 12175:1 12195:1 12211:1 12214:1 12220:1 12237:1 12248:1 12249:1 12250:1 12254:1 12330:2 12346:1 12350:1 12382:1 12388:1 12389:1 12390:1 12405:1 12407:1 12447:2 12452:1 12453:1 12455:2 12456:1 12457:1 12476:1 12478:1 12480:2 12490:1 12513:1 12526:1 12535:5 12543:2 12546:1 12552:1 12572:1 12592:1 12609:1 12622:1 12624:1 12668:1 12683:1 12687:1 12694:1 12726:1 12755:1 12756:1 12768:1 12774:1 12783:1 12787:1 12837:1 12838:1 12850:2 12851:4 12857:3 12871:1 12877:1 12881:1 12882:1 12895:1 12898:5 12905:1 12922:1 12935:1 12940:2 12977:1 13011:1 13012:1 13021:2 13025:1 13032:1 13054:2 13064:1 13082:3 13095:1 13100:2 13115:1 13131:2 13139:1 13149:1 13160:1 13190:1 13198:1 13222:1 13226:1 13229:1 13266:1 13306:4 13317:1 13322:1 13336:1 13337:1 13342:1 13344:2 13347:1 13350:7 13351:1 13352:1 13368:2 13387:2 13401:3 13407:1 13413:1 13414:1 13424:2 13431:1 13435:2 13462:1 13470:1 13477:3 13481:2 13483:1 13488:1 13489:4 13491:2 13497:2 13527:2 13537:1 13538:1 13552:1 13564:1 13578:1 13581:2 13593:2 13599:1 13606:1 13619:6 13623:1 13631:3 13640:1 13648:2 13649:1 13654:1 13666:1 13675:1 13679:2 13685:1 13686:2 13710:1 13726:1 13728:1 13739:1 13752:1 13755:1 13791:2 13792:1 13793:1 13795:4 13825:1 13835:1 13849:2 13861:1 13903:1 13955:1 13956:1 13969:1 13970:2 13972:1 13975:2 13987:1 13992:2 14002:1 14005:1 14013:1 14021:1 14051:1 14058:1 14060:1 14068:1 14075:1 14099:1 14132:1 14135:2 14144:1 14155:1 14164:2 14169:2 14172:2 14180:1 14184:1 14196:1 14213:4 14222:1 14233:1 14240:1 14253:4 14257:1 14278:1 14296:1 14309:1 14313:1 14320:1 14329:1 14334:1 14337:1 14340:1 14351:1 14354:2 14356:1 14365:1 14381:1 14385:1 14396:1 14401:1 14406:4 14412:1 14415:1 14421:2 14436:3 14458:1 14469:1 14487:1 14498:3 14512:1 14513:1 14528:1 14529:1 14532:2 14533:2 14543:1 14563:1 14572:2 14612:1 14614:1 14633:1 14634:2 14637:3 14645:3 14651:1 14655:1 14659:1 14681:1 14725:1 14736:2 14769:1 14775:1 14786:1 14798:1 14811:1 14821:1 14822:2 14832:1 14845:1 14868:1 14881:1 14887:2 14890:1 14907:1 14908:2 14912:1 14919:1 14926:1 14927:2 14930:2 14931:1 14941:1 14958:1 14986:3 14993:1 15002:1 15005:1 15011:2 15015:1 15029:1 15060:1 15078:1 15089:1 15096:2 15129:1 15131:1 15146:1 15148:1 15150:1 15153:1 15162:1 15178:1 15202:1 15207:1 15234:4 15235:1 15245:1 15247:1 15252:1 15255:1 15259:3 15268:1 15271:2 15276:2 15277:1 15278:1 15285:3 15294:1 15300:2 15314:4 15326:1 15342:1 15349:2 15359:1 15378:1 15392:1 15400:2 15416:1 15421:1 15426:2 15433:1 15475:2 15481:1 15497:1 15518:1 15534:1 15566:1 15568:3 15579:1 15597:2 15622:1 15628:1 15632:1 15657:1 15658:1 15659:1 15668:2 15671:1 15674:2 15677:1 15682:1 15685:4 15686:1 15692:1 15696:1 15698:1 15722:5 15727:1 15730:1 15742:2 15770:1 15771:1 15794:1 15801:1 15805:1 15820:3 15827:1 15829:2 15831:1 15842:1 15843:1 15845:1 15861:1 15884:1 15900:1 15907:1 15912:1 15916:2 15935:1 15937:2 15941:2 15959:1 15997:1 16020:1 16031:1 16032:1 16048:3 16060:4 16071:1 16088:1 16096:1 16107:1 16117:1 16135:1 16142:1 16161:1 16166:3 16178:1 16182:1 16204:1 16208:1 16222:1 16226:1 16243:1 16245:2 16247:2 16259:1 16284:1 16314:1 16319:2 16394:1 16410:1 16429:4 16438:1 16454:1 16482:1 16487:1 16495:1 16498:1 16519:1 16554:1 16563:1 16581:1 16591:1 16595:1 16622:1 16627:1 16655:2 16664:1 16670:1 16671:1 16686:1 16688:1 16714:1 16729:1 16730:1 16733:1 16739:1 16749:2 16758:1 16769:1 16773:1 16776:1 16792:1 16817:1 16831:1 16833:1 16836:3 16856:1 16861:3 16888:1 16932:2 16947:1 16948:1 16950:1 16955:1 16956:1 16960:1 16964:2 16966:1 16988:1 17014:1 17015:3 17019:1 17021:1 17026:1 17029:1 17039:1 17044:1 17046:2 17048:1 17066:2 17095:4 17110:1 17126:1 17130:1 17131:1 17152:2 17161:1 17164:1 17169:2 17173:1 17175:1 17195:1 17199:1 17205:1 17221:1 17224:1 17225:1 17228:2 17229:1 17240:1 17247:2 17255:1 17266:1 17273:1 17275:2 17284:1 17311:1 17326:3 17327:1 17329:1 17331:1 17337:1 17366:1 17370:1 17376:1 17377:1 17388:2 17390:3 17391:1 17396:1 17408:1 17415:1 17419:2 17420:1 17432:1 17434:2 17436:1 17440:2 17444:1 17462:1 17483:1 17484:1 17487:5 17500:3 17520:1 17537:2 17547:1 17564:1 17570:1 17573:1 17603:2 17612:1 17628:1 17635:1 17639:3 17649:2 17669:1 17670:1 17695:2 17700:1 17712:1 17714:1 17720:4 17763:1 17785:3 17797:1 17812:1 17822:1 17835:4 17842:1 17865:5 17889:1 17896:1 17899:1 17964:1 17985:1 17990:1 17993:7 18001:1 18002:1 18004:1 18007:1 18023:1 18026:1 18031:1 18034:1 18045:1 18049:1 18060:1 18087:1 18096:2 18136:1 18141:1 18148:1 18160:1 18167:1 18170:1 18203:2 18218:1 18223:2256 18226:1 18242:1 18245:1 18267:1 18269:1 18271:1 18274:1 18286:1 18288:1 18326:1 18353:1 18405:1 18406:1 18407:1 18432:1 18435:1 18454:1 18536:1 18545:1 18567:1 18575:1 18592:1 18598:1 18663:2 18667:1 18694:1 18701:1 18712:1 18746:1 18753:1 18755:1 18759:2 18775:1 18786:1 18796:1 18805:1 18836:3 18838:1 18863:1 18868:1 18871:4 18895:1 18898:1 18918:1 18937:1 18947:2 18950:1 18970:2 18977:1 18982:1 18989:3 18992:1 19004:1 19027:2 19029:8 19032:1 19072:1 19081:1 19114:1 19124:3 19127:1 19141:1 19159:4 19189:1 19208:1 19210:1 19217:1 19222:1 19225:2 19241:1 19245:2 19260:3 19272:1 19277:1 19278:2 19280:1 19282:1 19298:2 19301:1 19319:2 19324:1 19327:1 19328:1 19341:1 19344:1 19345:2 19359:3 19372:1 19391:1 19411:1 19413:1 19415:3 19418:1 19419:1 19429:1 19435:1 19436:2 19480:1 19482:1 19502:1 19527:1 19531:2 19533:2 19601:4 19632:1 19645:2 19670:4 19680:4 19687:1 19689:1 19694:1 19706:1 19717:2 19722:1 19726:1 19736:1 19746:2 19748:1 19754:1 19758:1 19764:1 19769:1 19770:1 19774:1 19786:2 19795:1 19806:1 19818:1 19823:1 19829:2 19840:2 19843:3 19856:1 19858:1 19867:1 19872:1 19878:1 19884:1 19957:1 19959:1 19965:2 19972:1 19973:1 20010:3 20011:1 20015:2 20024:1 20038:1 20039:1 20042:1 20047:2 20049:1 20068:1 20077:1 20141:1 20169:1 20172:1 20175:2 20205:1 20211:1 20226:1 20236:1 20256:1 20258:1 20262:1 20263:1 20273:1 20277:1 20280:2 20282:1 20287:1 20305:1 20306:1 20310:1 20314:1 20321:1 20350:2 20370:1 20381:1 20384:3 20386:1 20391:1 20393:4 20398:1 20399:1 20409:2 20411:1 20424:2 20436:3 20438:2 20448:1 20510:1 20512:1 20517:1 20521:1 20522:1 20538:1 20555:1 20556:1 20573:1 20582:1 20594:1 20604:3 20664:1 20671:1 20706:1 20712:1 20745:1 20752:2 20779:1 20785:1 20803:2 20842:1 20846:1 20857:1 20858:2 20863:1 20876:1 20878:1 20892:1 20899:2 20901:1 20929:1 20946:1 20951:1 20953:1 20956:1 20957:1 20958:1 20959:1 20973:1 20980:1 20990:1 20994:1 21009:1 21025:1 21043:1 21055:1 21092:1 21097:1 21111:3 21137:2 21140:1 21153:1 21159:3 21168:1 21171:1 21175:2 21179:1 21185:7 21186:1 21198:3 21202:1 21210:1 21219:1 21238:2 21244:1 21245:1 21248:1 21251:1 21294:2 21315:1 21329:1 21338:1 21348:3 21352:1 21361:1 21364:1 21368:1 21379:1 21380:3 21381:1 21383:1 21395:1 21396:2 21399:1 21428:1 21430:1 21432:1 21433:1 21442:1 21473:1 21476:2 21486:1 21492:1 21498:1 21514:1 21516:1 21517:1 21537:1 21547:1 21563:2 21565:2 21566:1 21588:2 21593:3 21616:1 21622:2 21632:1 21658:1 21682:2 21689:1 21698:1 21701:1 21707:1 21714:1 21717:1 21725:1 21747:1 21748:1 21758:1 21761:1 21765:4 21774:1 21781:2 21786:1 21788:1 21790:2 21792:3 21795:3 21803:1 21810:1 21815:1 21821:1 21838:1 21847:2 21862:1 21872:2 21914:2 21917:1 21919:2 21923:1 21924:1 21933:2 21959:2 21972:3 21985:3 21997:1 22020:1 22031:1 22039:1 22040:1 22052:1 22057:2 22065:1 22080:1 22089:1 22095:1 22120:1 22126:1 22132:1 22140:1 22142:1 22144:1 22148:1 22157:2 22165:1 22169:1 22171:1 22211:1 22265:6 22270:1 22274:1 22275:1 22279:3 22287:1 22288:1 22290:1 22291:1 22324:1 22347:1 22365:2 22402:2 22410:1 22420:2 22433:1 22436:1 22437:1 22447:1 22458:1 22490:2 22512:1 22533:1 22546:2 22566:5 22584:1 22586:3 22589:2 22643:1 22651:1 22687:1 22727:1 22737:1 22759:1 22777:1 22781:3 22791:1 22796:2 22799:1 22809:2 22812:1 22818:3 22847:2 22860:1 22861:1 22870:1 22871:1 22880:1 22882:2 22919:2 22926:1 22940:1 22946:3 22950:1 22951:1 22964:1 22972:1 22996:1 22997:2 23001:2 23016:1 23021:1 23027:1 23031:2 23037:3 23041:1 23046:2 23064:1 23080:1 23081:1 23088:1 23097:1 23098:1 23106:3 23109:1 23116:1 23120:1 23129:1 23157:2 23159:1 23165:1 23191:1 23226:1 23227:1 23237:2 23242:1 23251:1 23276:1 23285:1 23290:1 23293:1 23308:1 23335:1 23338:1 23353:1 23385:2 23393:1 23414:1 23445:1 23447:1 23456:1 23478:1 23487:5 23488:1 23490:1 23493:1 23502:1 23527:1 23528:1 23542:2 23555:1 23558:1 23573:1 23580:1 23594:2 23595:1 23619:3 23622:2 23627:1 23646:1 23656:1 23669:2 23672:1 23684:1 23688:4 23695:3 23725:2 23736:1 23745:1 23776:2 23780:1 23787:2 23841:1 23856:2 23862:5 23870:1 23876:2 23891:1 23897:1 23904:6 23942:1 23960:1 23961:1 23970:1 23994:1 24000:1 24002:1 24009:1 24015:1 24021:2 24022:2 24033:1 24037:1 24057:1 24074:1 24078:1 24079:1 24089:1 24110:1 24119:1 24124:1 24149:1 24150:1 24152:1 24158:1 24162:1 24174:1 24176:1 24180:3 24183:1 24185:1 24197:2 24198:1 24202:1 24204:1 24215:1 24247:2 24279:1 24309:2 24317:1 24355:1 24356:1 24369:1 24408:1 24410:1 24412:1 24422:1 24476:1 24479:1 24487:2 24499:1 24574:3 24589:1 24600:3 24603:1 24615:1 24636:4 24639:1 24643:1 24652:3 24665:1 24673:2 24689:1 24701:2 24704:2 24708:1 24716:2 24737:1 24759:1 24762:1 24767:1 24794:1 24800:1 24801:1 24817:1 24825:1 24834:1 24851:1 24854:4 24862:1 24864:1 24866:1 24867:2 24871:2 24887:1 24888:1 24890:1 24892:2 24894:1 24895:1 24905:2 24907:1 24910:1 24911:2 24921:1 24927:1 24928:3 24936:1 24944:1 24955:1 24961:2 24962:1 24978:1 24989:1 24992:1 25017:1 25019:1 25024:1 25041:1 25064:5 25065:1 25083:1 25084:1 25092:1 25094:1 25103:2 25117:1 25148:1 25156:1 25159:1 25167:1 25168:1 25171:1 25180:1 25188:1 25191:1 25212:2 25225:2 25247:1 25255:1 25290:1 25300:1 25303:1 25305:4 25308:1 25340:1 25366:2 25371:2 25379:1 25406:2 25413:1 25435:1 25441:1 25458:1 25467:2 25469:1 25472:1 25473:1 25476:1 25478:1 25482:1 25484:2 25487:1 25495:1 25497:2 25519:1 25550:3 25552:1 25561:1 25585:2 25599:1 25619:7 25655:1 25660:2 25673:1 25692:1 25699:1 25717:1 25728:1 25735:1 25740:3 25750:1 25753:1 25757:1 25764:1 25777:1 25782:1 25791:1 25825:1 25848:2 25851:1 25866:1 25867:1 25872:2 25873:1 25878:1 25910:4 25929:3 25934:1 25937:1 25953:1 25960:1 25962:1 25978:1 25985:1 25992:1 26008:1 26023:1 26042:1 26066:2 26075:2 26116:1 26140:1 26148:1 26168:1 26191:1 26227:1 26262:2 26288:1 26290:2 26293:3 26302:1 26307:1 26322:1 26342:1 26349:1 26356:1 26357:1 26358:1 26361:1 26379:1 26383:1 26397:1 26401:1 26419:1 26434:1 26451:1 26463:3 26474:1 26483:1 26489:2 26506:1 26535:2 26540:1 26557:1 26559:1 26564:3 26606:1 26609:1 26613:2 26615:2 26629:1 26644:1 26658:3 26664:1 26683:1 26684:1 26704:1 26734:2 26735:1 26739:1 26746:1 26749:1 26750:1 26754:2 26759:1 26775:1 26794:1 26801:5 26804:1 26805:1 26809:3 26811:1 26815:1 26816:2 26819:1 26823:1 26826:2 26831:2 26840:1 26846:1 26849:1 26873:1 26876:2 26882:1 26888:1 26907:4 26914:1 26918:1 26919:1 26922:1 26923:2 26925:1 26947:1 26950:1 26960:1 26965:1 26966:1 26967:1 26998:1 26999:1 27016:1 27046:2 27055:1 27073:1 27089:3 27091:2 27092:1 27093:1 27105:2 27166:1 27191:1 27195:1 27200:1 27211:3 27245:1 27250:1 27276:1 27295:1 27306:1 27308:1 27312:3 27341:1 27353:1 27355:2 27361:1 27378:1 27379:1 27389:1 27393:4 27404:1 27415:1 27419:1 27431:1 27433:1 27439:1 27450:2 27454:2 27456:1 27460:2 27465:2 27469:14 27475:1 27491:1 27501:1 27504:1 27505:7 27520:6 27524:1 27546:1 27573:1 27591:1 27598:5 27601:1 27605:1 27609:1 27624:4 27631:5 27636:2 27641:1 27647:1 27662:1 27668:13 27671:1 27676:1 27689:2 27710:1 27743:1 27746:1 27756:2 27774:1 27788:1 27799:1 27815:1 27818:1 27828:1 27846:1 27860:1 27862:1 27867:2 27871:1 27872:1 27880:1 27884:1 27892:1 27910:2 27919:1 27939:1 27942:2 27952:2 27954:1 27955:1 27984:1 27991:1 27999:1 28010:2 28011:5 28017:2 28024:1 28041:2 28058:1 28060:1 28063:1 28088:2 28093:2 28105:1 28117:1 28120:1 28132:1 28151:2 28153:1 28159:1 28172:1 28178:2 28184:1 28191:1 28224:1 28226:2 28239:2 28246:1 28251:1 28270:1 28280:1 28297:1 28309:1 28325:1 28340:2 28351:1 28404:1 28413:1 28418:1 28422:1 28424:1 28426:2 28484:1 28492:1 28535:1 28543:6 28544:2 28550:2 28559:1 28561:1 28585:2 28590:2 28593:1 28611:2 28613:1 28627:4 28671:2 28682:1 28684:1 28694:2 28695:1 28701:3 28709:2 28711:2 28718:1 28732:1 28743:1 28756:1 28760:4 28769:1 28783:1 28796:1 28797:1 28808:1 28811:2
|
f4df572dbd8654de52121be573124a046b0baed8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2300/CH23/EX23.31.2/Ex23_2.sce | 362a21ae74322d1073f66c8b07490da7ced33975 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 366 | sce | Ex23_2.sce | //scilab 5.4.1
//Windows 7 operating system
//chapter 23 Lasers,Fibre Optics,and Holography
clc
clear
V=500//V=bandwidth of a He-Ne laser in Hz
t=1/V//t=coherence time
disp("ms",(t*(10^3)),"The coherence time is =")
c=3*10^8//c=velocity of light in m/s
Lc=c/V//Lc=longitudinal coherence length
disp("km",(Lc/1000),"The longitudinal coherence length is=")
|
553acf9ae3451345dd27cd8fc79fc837f59e179a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH12/EX12.7/Example12_7.sce | ea011306df128670cd3326603df04d871955bf41 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,016 | sce | Example12_7.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 5: MECHANICAL DESIGN OF OVERHEAD LINES
// EXAMPLE : 5.7 :
// Page number 200
clear ; clc ; close ; // Clear the work space and console
// Given data
W = 428/1000.0 // Weight(kg/m)
u = 1973.0 // Breaking strength(kg)
s = 2.0 // Factor of safety
l = 200.0 // Span(m)
h = 3.0 // Difference in tower height(m)
// Calculations
T = u/s // Allowable maximum tension(kg)
x_2 = (l/2.0)+(T*h/(W*l)) // Point of minimum sag from tower at higher level(m)
x_1 = l-x_2 // Point of minimum sag from tower at lower level(m)
// Results
disp("PART II - EXAMPLE : 5.7 : SOLUTION :-")
printf("\nPoint of minimum sag, x_1 = %.1f metres", x_1)
printf("\nPoint of minimum sag, x_2 = %.1f metres", x_2)
|
2ed06183e38cbe7a0f50b0b2620d0b3522429e5f | 00eac8c2f57691598f924475b3fd615d1f979ece | /simplexEN.sci | 086c428f6424abc1cd42b72298a57fedb3cb5a56 | [] | no_license | matbesancon/Simplex_Project | 28d642905152a37f257364c6a1a1b4289411c35a | 560650db0805cc5002a56a1c8c74b30f2cda39a0 | refs/heads/master | 2021-05-29T21:10:25.682861 | 2015-05-12T14:30:46 | 2015-05-12T14:30:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 9,513 | sci | simplexEN.sci | function simplex(A,b,rel,c,typ)
tic();
//A : coefficients matrix
//n : column vector of constraints
//rel : column vector precising the type of constraint (-1: <= / 0: == / 1: >=)
//c : row costs vector
//typ : type of objective : "min" or "max"
nbVar = length(c)
// z(opt) is initialized at 0
z=0
// Computing and displaying the problem under its standard form
display("STANDARD FORM")
[A,b,c,base]=standardForm(A,b,rel,c,typ);
disp(A); disp(b); disp(c); disp(z); disp(base)
// The base vector is a row vector. It provides the program with the information : "what vector is in the base" and their position
if isBaseValid(A,base)==1 then
// if the problem is already in a standard form, the base is feasible, simplex is directly applied.
display("NORMAL ITERATION")
[A,b,z,c,null,null,base]=iterSimplex(A,b,z,c,null,null, base)
display("FINAL RESULT")
displayTab(A,b,c,z,base,nbVar)
listsol = degeneracyv2(A,b,c,z,base,nbVar, list(getSolution(b, base, nbVar)))
displaydegeneracy(listsol)
else
// if turning the problem into a standard form doesn't return a feasible base, it is processed through the phase 1
//...then simplex is performed
[ok,A,b,c,base,z]=phaseOne(A,b,c,base)
if ok==1 then
display("ITERATION CLASSIQUE")
[A,b,z,c,null,null,base]=iterSimplex(A,b,z,c,null,null, base)
display("FINAL RESULT")
displayTab(A,b,c,z,base,nbVar)
listsol = degeneracyv2(A,b,c,z,base,nbVar, list(getSolution(b, base, nbVar)))
displaydegeneracy(listsol)
end
end
// displaying runtime
display("Runtime (in seconds) : ")
disp(toc())
endfunction
function display(text)
disp("-----------------------------------------------------------------------")
disp(text)
disp("-----------------------------------------------------------------------")
endfunction
function [A,b,c,base]=standardForm(A, b, rel, c, typ)
prevNbColA = size(A,2)
// Consistency of matrix dimensions is checked on rows
if ~isequal([size(A,1), size(b,1), size(rel,1)]/size(A,1), [1,1,1]) | (size(c,1)~=1) then
disp("Number of rows is inconsistent on some matrices")
return null;
end
// Consistency of matrix dimensions is checked on columns
if ~isequal([size(A,2), size(c,2)]/size(A,2), [1,1]) | ~isequal([size(b,2), size(rel,2)], [1,1]) then
disp("Number of columns is inconsistent on some matrices")
return null;
end
// stack variables are generated
stackVar=eye(size(A,1), size(A,1))
for i=1:size(rel,1)
stackVar(i,i)=stackVar(i,i)*(-1)*rel(i)
end
// The base(now feasible) that was just created is inilialized
base = prevNbColA+1:prevNbColA+size(stackVar,2)
// basic variables are added to A (if non null).
// if the stack variable shouldn't be integrated, the base is corrected
for i=1:size(stackVar,2)
if ~isequal(stackVar(:,i), zeros(size(stackVar,1),1)) then
A(:, size(A,2)+1)=stackVar(:, i)
c(:, size(c,2)+1)=0
else
base(i)=-1
end
end
// if the cost function is to minimize, c is multiplied by -1
if typ=="min" then
c=c*(-1)
end
// the row equations are arranged so that all b elements are positive
for i=1:size(b,1)
if b(i)<0 then
b(i) = b(i)*(-1)
A(i,:) = A(i,:)*(-1)
end
end
endfunction
function isOk=isBaseValid(A,base)
isOk=1
for i=base
if i==-1 | A(find(base==i,1),i)==-1 then
isOk=0
return isOk
end
end
return isOk
endfunction
function [ok,A,b,c,base,z]=phaseOne(A,b,c,base)
ok=1
display("PHASE 1")
// AP1 and AC1 are used for phase 1
Ap1 = A
cp1 = zeros(1,length(c))
zp1 = 0
// Used to merge A and auxiliary variables
I=eye(size(A,1),size(A,1))
// for each element of the base eventual sources of error are checked
for i=1:length(base)
if base(i)==-1 | Ap1(i,base(i))==-1 then
Ap1(:,$+1)=I(:,i)
cp1(1,$+1)=0
cp1(1,1:length(c))=cp1(1,1:length(c))+Ap1(i,1:length(c))
zp1 = zp1 + b(i)
base(i)=size(Ap1, 2)
end
end
cp1bis = cp1
cp1bis(1:length(c))=c
disp(Ap1)
disp(cp1)
disp(zp1)
// Simplex iteration is applied to the phase 1
//the initial z and cost vector c are also passed to the function so that they are kept updated
[Ap1,b,zp1,cp1,z,cp1bis,base]=iterSimplex(Ap1,b,zp1,cp1,z,cp1bis, base)
if zp1~=0 then
disp("Phase 1 cannot delete auxiliary variables : no finite solution to the phase 1 problem")
ok=-1
end
// Auxiliary variables are deleted from A and c before the end of phase 1
// A,b,c,z are then ready for simplex iterations (if the actual base is feasible)
A=Ap1(:,1:size(A,2))
c=cp1bis(1:length(c))
endfunction
function [A,b,z1,c1,z2,c2,base]=iterSimplex(A,b,z1,c1,z2,c2,base)
// Iterations are performed while there is a s>0
while chooseS(c1)~=(-1)
// Choosing r
in = chooseS(c1)
// Choosing s
out = chooseR(A,b,in)
// If r not found (Ar<=0), no finite solution
if out==(-1) then
disp("Error, pas de solution finie")
return
end
// Exchanging in and out variables in the base
base(out)=in
// pivot is performed
[A,b,z1,c1,z2,c2]=pivot(A,b,z1,c1,z2,c2,in,out,base)
disp("_________________")
disp("Next iteration (A,b,c,z)")
disp(A); disp(b); disp(c1); disp(z1)
end
endfunction
// Choosing the set column
function [in]=chooseS(c, base)
maxi=max(c)
if maxi<=0 then
in=-1
else
in = find(c==maxi,1)
end
endfunction
// Choosing the reset line
function [out]=chooseR(A,b,in)
out=-1
mini=-1
Ar=A(:,in)
for i=1:length(Ar)
if (Ar(i)>0 & ((b(i)/Ar(i))<mini | mini==-1)) then
mini=b(i)/Ar(i)
out=i
end
end
endfunction
// Pivot operation function
function [A,b,z1,c1,z2,c2]=pivot(A,b,z1,c1,z2,c2,in,out,base)
Ai=A(:,base)
z1=z1-(c1(in)/A(out,in))*b(out)
if (z2~=null) then
z2=z2-(c2(in)/A(out,in))*b(out)
end
c1=c1-(c1(in)/A(out,in))*A(out,:)
if (c2~=null) then
c2=c2-(c2(in)/A(out,in))*A(out,:)
end
A=Ai\A
b=Ai\b
endfunction
function xfin=getSolution(b,base,nbVar)
xfin = zeros(nbVar,1);
for i=1:length(xfin)
if ~isempty(find(base==i)) then
xfin(i)=b(find(base==i))
end
end
endfunction
// display des états respectifs de A, b, c, z à un instant donné
function displayTab(A,b,c,z,base,nbVar)
disp("Valeur de A ...");
disp(A);
disp("... de b ...");
disp(b);
disp("... de c ...");
disp(c);
disp("... de z ...");
disp(z);
disp("Vecteur des variables de decision ");
disp(getSolution(b,base,nbVar));
endfunction
function listsol=degeneracyv2(A,b,c,z,base,nbVar, listsol)
// On cherche une eventuelle dégénérescence de seconde espèce
in=1
totest=list()
for in=1:length(c)
if isempty(find(base==in)) & c(in)==0 then
totest($+1)=in
end
in=in+1
end
// On a alors stocké dans la liste 'totest' toutes les positions de 0 dans le vecteur coût (hors base) qui sont probablement sinonymes de nouvelle solution valide
oldbase=base
oldb=b
oldz=z
oldc=c
oldA=A
// Pour chaque position de 0 repéré dans la liste 'totest', on effectue une nouvelle itération du simplexe qui nous donne possiblement une solution. Si solution il y a, on va tester si cette solution est nouvelle ou non. Si elle l'est, on va aller en profondeur voir si on ne trouve pas de nouvelle solution à partir de cette dernière.
for idx=1:length(totest)
base=oldbase
b=oldb
z=oldz
c=oldc
A=oldA
in = totest(idx)
out = chooseR(A,b,in)
base(out)=in
[A,b,z,c]=pivot(A,b,z,c,null,null,in,out,base)
newsol=getSolution(b,base,nbVar)
if myFind(listsol,newsol)==0 then
listsol($+1)=newsol
listsol=degeneracyv2(A,b,c,z,base,nbVar, listsol);
end
end
endfunction
// Fonction permettant de voir si une solution passée en argument est déjà solution (ou non) d'une liste de solutions également passée en argument
function isIn=myFind(listsol, sol)
isIn = 0
for i=1:length(listsol)
if listsol(i)==sol then
isIn = 1
end
end
endfunction
// Fonction d'display de la dégénérescence (pour une liste de solutions passée en argument)
function displaydegeneracy(listsol)
if length(listsol)>1 then
display("DEGENERESCENCE DE SECONDE ESPECE")
disp("Les solutions sont les combinaisons convexes de...")
disp(listsol(1))
for idx=2:length(listsol)
disp("...et...")
disp(listsol(idx))
end
end
endfunction
|
cdf9ac4a3cbf064eaaf9dfde3d52035f71f4b9a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH7/EX7.12/Example_7_12.sce | dbb7bb28d165e22487852336864dfb642e70b2d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,175 | sce | Example_7_12.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 7
//Properties of Solutions
//Example 12
clear;
clc;
//Given:
xa = [0 0.2 0.4 0.6 0.8 1.0];
Pa_bar = [0 0.049 0.134 0.243 0.355 0.457];
Pb_bar = [0.386 0.288 0.187 0.108 0.046 0];
//To calculate activity and activity coeffecient of chloroform
xb = 1-xa;
Pbo = 0.386; //vapour pressure of pure chloroform
//(a). Based on standard state as per Lewis-Randall rule
mprintf('Based on Lewis Randall Rule');
mprintf('\n Activity Activity coeffecient');
for i = 1:6
a(i) = Pb_bar(i)/Pbo;
mprintf('\n %f',a(i));
if(xb(i)==0)
mprintf(' Not defined');
else ac(i) = a(i)/xb(i);
mprintf(' %f',ac(i));
end
end
//(b). Based on Henry's Law
Kb = 0.217; //bar (From Example 7.11 Page no. 276)
mprintf('\n\n\n Based on Henrys Law');
mprintf('\n Activity Activity coeffecient');
for i = 1:6
a(i) = Pb_bar(i)/Kb;
mprintf('\n %f',a(i));
if(xb(i)==0)
mprintf(' Not defined');
else
ac(i) = a(i)/xb(i);
mprintf(' %f',ac(i));
end
end
//end |
f67dd3191176c7b4e028c4d90d91b4c610bce9f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /980/CH11/EX11.5/11_5.sce | 47a951777b0eef6ae647e7ab4e15375637bf8374 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | 11_5.sce | clc;
clear;
format('v',11);
S=10^6;
Z0=377;
E=sqrt(S*Z0);
H=E/Z0;
disp(E,"The magnitude of the electric field vector,E(in V/m)=");
disp(H,"The magnitude of the magnetic field vector,H(in A/m)=");
|
ac40f24644a2596dfdf01499c031ad6f16e43c3a | df09462d6db7a3e6fb08a8e06a0237bcac4230e9 | /main.sce | ae7370fc11c98d331cda079ba5d13b92c42a07cd | [] | no_license | shubham2345/Library-Management-Sytem | bfbbe6906dbccfc4b519ec6b1c0fbf6e1c11177b | 84f49f081ede2464db346dbc8b38b2fd73461d09 | refs/heads/master | 2020-12-31T07:10:25.030257 | 2017-03-29T11:44:20 | 2017-03-29T11:44:20 | 86,575,431 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,017 | sce | main.sce | // LIBRARY MANAGEMENT SYSTEM
//MADE BY AYUSH DIWAN, VARUN JAIN, SHAURYA MILIND
// LOOP FOR REVISITING THE LIBRARY
loop=1;
while(loop==1)
clc;
//MAIN MENU OF THE LIBRARY
disp(" Welcome To Library")
disp(' ')
disp(' LIBRARY MENU')
disp(' 1-BOOK FINDER')
disp(' 2-BOOK ISSUE')
disp(' 3-BOOK DEPOSIT')
disp(' ')
// ASKING THE USER FOR CHOICE, AS WHAT TO DO NEXT
i=input(' ENTER YOUR CHOICE : ')
select i
//BOOK FINDER MENU
case 1
clc;
disp(" WELCOME TO LIBRARY")
disp(' ')
disp(" CHOOSE BOOK CATEGORY")
disp(' 1.ENCYCLOPEDIA')
disp(' 2.NOVELS')
disp(' 3.MANAGEMENT')
disp(' 4.ENGINEERING')
disp(' 5.JOURNALS')
disp(' 6.TECHNOLOGY')
disp(' ')
n=input(' ENTER YOUR CHOICE : ',"string");
select n
//DISPLAYING THE FLOOR OF THE BOOK
case "ENCYCLOPEDIA"
clc
disp(" WELCOME TO LIBRARY")
disp(' GO TO FLOOR 2')
case "NOVELS"
clc
disp(" WELCOME TO LIBRARY")
disp(' GO TO FLOOR 1')
case "MANAGEMENT"
clc
disp(" WELCOME TO LIBRARY")
disp(' GO TO FLOOR 3')
case "ENGINEERING"
clc
disp(" WELCOME TO LIBRARY")
disp(' GO TO FLOOR 4')
case "JOURNALS"
clc
disp(" WELCOME TO LIBRARY")
disp(' GO TO GROUND FLOOR')
case "TECHNOLOGY"
clc
disp(" WELCOME TO LIBRARY")
disp(' GO TO FLOOR 5')
end
//BOOK ISSUE MENU
case 2
clc;
disp(" WELCOME TO LIBRARY")
disp(' ')
disp(" BOOK ISSUE")
disp(' ')
//ASKING FOR THE BOOK AND USER DETAILS
name=input('ENETR YOUR NAME: ',"string");
book=input('ENTER THE BOOK CODE: ');
phone=input('ENTER YOUR CONTACT INFORMATION: ');
clc;
disp(" YOUR BOOK HAS BEEN ISSUED.")
disp(' ')
disp(' LIBRARY TARIFF IS AS BELOW : ')
disp(' ')
disp("THERE IS NO FINE FOR THE FIRST 15 DAYS")
disp("Rs 1 PER DAY FOR THE NEXT 15 DAYS AFTER 15 DAYS")
disp("Rs 2 PER DAY FOR THE NEXT 15 DAYS AFTER 30 DAYS")
disp("RS 100 AFTER 45 DAYS")
//BOOK DEPOSIT MENU
case 3
clc;
disp(" WELCOME TO LIBRARY")
disp(' ')
code=input(' ENETR BOOK CODE: ');
clc;
disp(" FINE DETAILS")
disp(' ')
disp(" 1-15: NO FINE")
disp(" 16-30: Rs 1 Per Day")
disp(" 31-45: Rs 2 Per Day")
disp(" Above 45: PAY RS 100")
disp(' ')
//VARIABLE FOR STRING THE FINE
y=0
//CAALCULATING THE FINE
x=input("NUMBER OF DAYS THE BOOK HAS BEEN ISSUED: ")
if x<=15 then
y=0
elseif x>15 & x<=30 then
y=(x-15)*1
elseif x>30 & x<=45 then
y=15*1+(x-30)*2
else
y=100
end
clc
disp(' ')
printf(" YOUR FINE IS Rs %d",y)
end
disp(' ')
disp(' ')
//ASKING THE USER TO REVISIT OR NOT?
loop=input('Press 1 to Revisit the library : ');
end
clc;
|
2a4b7a10d4ff4bd3e789b6e063227d55a4cd49ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH33/EX33.01/33_01.sce | 197bec6fcd0767b0eec6592e2de3680187eaa232 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 189 | sce | 33_01.sce | clear;
clc;
v=11e3/sqrt(3);
v=round(v);
r=5e6;
per=20;
i=r/(3*v);
i=round(i);
i0=i*25/100;
R=per*v/(i0*1000);
R=round(R*100)/100;
printf("the resistance to be added=%fohms",R);
|
1d3c2ac596eb3d6f2522427af1b7850ca2a9d4fd | b24d354cfcd174c92760535d8b71e22ced005d81 | /DSP functions/tf2ca/test_6.sce | 9a7adae0f26c215df2b807f9df08317c16509139 | [] | no_license | shreniknambiar/FOSSEE-Signal-Processing-Toolbox | 57ad8e2a71d64f95c4ccfd131e00095cf2b9c6f8 | 143cf61eff31240870dc0c4f61e32818a4482365 | refs/heads/master | 2021-01-01T18:25:34.435606 | 2017-07-25T18:23:47 | 2017-07-25T18:23:47 | 98,334,322 | 0 | 0 | null | 2017-07-25T17:48:00 | 2017-07-25T17:47:59 | null | UTF-8 | Scilab | false | false | 446 | sce | test_6.sce | // Test # 6 : Valid input case #2
exec('./tf2ca.sci',-1);
[d1,d2,b]=tf2ca([0.03 -0.5 -0.5 0.03],[1 2.4 -33 22]);
disp(b);
disp(d2);
disp(d1);
//
//Scilab Output
//b=1.7290007 + 0.4817393i
//d2= 1. -0.2593701 + 0.9083877i
//d1= 1. 0.7406299 - 0.9083877i -0.2593701 - 0.9083877i
//
//Matlab Output
//d1=1.0000 + 0.0000i 0.7406 - 0.9084i -0.2594 - 0.9084i
//d2=1.0000 + 0.0000i -0.2594 + 0.9084i
//b = 1.7290 + 0.4817i
|
5f3593a5ad422fb4687421f3a7653be6b5d4097a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3035/CH15/EX15.1/Ex15_1.sce | 24b38a3350da1eb5eed7b226e1c5c2f0c1bc5e93 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,260 | sce | Ex15_1.sce |
// Variable Declaration
G = 50.0 //Rating of machine(MVA)
f = 50.0 //Frequency of turbo generator(Hz)
V = 11.0 //Voltage rating of machine(kV)
H = 9.0 //Cycle corresponding to 180 ms
P_0 = 40.0 //Pre-fault output power(MW)
delta_0 = 20.0 //Rotor angle at instant of fault(degree)
funcprot(0)
// Calculation Section
P_0_close = 0 //Output power at instant of reclosing(MW)
P_a = P_0 - P_0_close //Net accelerating power(MW)
delta_sqr = P_a*180*f/(G*H) //double derivative(elect.degrees/sec^2)
function ans = integrand1(t) //intgs the double derivative to 800*t
ans = delta_sqr
endfunction
a = intg(0, 180*10**-3,integrand1) //Rotor velocity(electrical degrees/sec)
function ans = integrand2(t) //intgs the double derivative to 400*t^2
ans = delta_sqr*t
endfunction
b = intg(0, 180*10**-3,integrand2)
delta = delta_0 + b //Rotor angle(electrical degrees)
// Result Section
printf('Rotor angle at the instant of reclosure = %.2f electrical degrees' ,delta)
printf('Rotor velocity at the instant of reclosure = %.1f electrical degrees/sec' ,a)
|
49fa05de2b8bd78665883f5bb5a4194fc6bb5e98 | 8e5f157b1ed8b4af1de3a87d334b8dd3974f45c8 | /macros/imshow.sci | a4710c8250f1cef4cfe872e50a1f84a6fd6ea6f6 | [] | no_license | samiranrl/Scilab-Toolbox | e23e2bc2f6661fc0cb3b6fe7257f156ab94a2b87 | 2cbaf326584e98aa6acc66ad7457425f954844a8 | refs/heads/master | 2021-07-14T13:20:54.353654 | 2016-09-24T18:22:29 | 2016-09-24T18:22:29 | 43,631,749 | 1 | 1 | null | 2017-10-19T11:27:27 | 2015-10-04T09:47:58 | C++ | UTF-8 | Scilab | false | false | 1,489 | sci | imshow.sci | //Author :Priyanka Hiranandani NIT Surat
function[] =imshow(Image)
global TYPE_DOUBLE; //retrieving list and creating 3 dimensional matrix out of it
dimensions=size(Image)
MaxUInt8 = 2 ^ 8 - 1;
MaximumGrayValue = MaxUInt8;
if dimensions==3 then
[d c]=size(Image(1));
r=matrix(Image(1),c,d);
g=matrix(Image(2),c,d);
b=matrix(Image(3),c,d);
z(:,:,1)=r;
z(:,:,2)=g;
z(:,:,3)=b;
[NumberOfRows NumberOfColumns NumberOfChannels] = size(z);
NumberOfPixels = NumberOfRows * NumberOfColumns;
Sample = z(1);
if type(Sample) == 1 then
ColorMap = matrix(z, NumberOfPixels, NumberOfChannels);
disp(1);
else
TypeName = typeof(Sample)
select TypeName
case 'uint8'
MaxGrayValue = 2 ^ 8 - 1;
case 'uint16'
MaxGrayValue = 2 ^ 16 - 1;
case 'uint32'
MaxGrayValue = 2 ^ 32 - 1;
end;
ColorMap = double(matrix(z, NumberOfPixels, NumberOfChannels)) ...
/ MaxGrayValue;
end;
Img=z;
elseif dimensions==1 then
[d c]=size(Image(1));
Img=matrix(Image(1),c,d);
Img=Img';
select typeof(Img)
case 'uint8'
MaximumGrayValue = MaxUInt8;
case 'uint16'
MaximumGrayValue = max(Image(:)) ;
case 'uint32'
MaximumGrayValue = max(Image(:));
end;
ColorMap = graycolormap(double(MaximumGrayValue + 1));
end;
show(Img,ColorMap);
endfunction
|
510bd75e8865b46dc374e613b3c1731b5849196e | 964a1ce44b6391e555c0e2aeff6c55dda847d718 | /Mini Compiler for LaTeX/test result/cent_res.tst | 379544a4230d65159a8ebf519cfaa853cac6bdc8 | [] | no_license | kennethwty/mini-compiler-latex | 6c165567298c216d39a806fa7cc05ed67f1babfc | d1b99a4fbbac906bf61242a977886578e1eb3594 | refs/heads/master | 2021-09-28T10:08:02.927880 | 2018-11-16T17:45:46 | 2018-11-16T17:45:46 | 104,703,352 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 330 | tst | cent_res.tst |
A Basic file that checks to see if
the centering command works correctly.
Note that the double backslash should
indicate what should be centered and how
Single is for Single spacing
Verbatim allows text produced as is
Itemize uses ticks to indicate items
Center allows a block to be centered
|
7b964a9d89fe744a675ec37f67ac3f9e2f90acb3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1673/CH5/EX5.9/5_9.sce | 31b7487adc2ef93bb18888cbc7c1040c44d6c0a4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 881 | sce | 5_9.sce | //cubic B-spline
//example 5.8
//page 201
clc;clear;close;
k=[0 1 2 3 4];
x=1;//for x=1
s11=0;s13=0;s14=0;
s24=0;
s12=1/(k(3)-k(2));
s22=((x-k(1))*s11+(k(3)-x)*s12)/(k(3)-k(1));
s23=((x-k(2))*s11+(k(4)-x)*s13)/(k(4)-k(2));
s33=((x-k(1))*s22+(k(4)-x)*s23)/(k(4)-k(1));
s34=((x-k(2))*s23+(k(5)-x)*s24)/(k(5)-k(2));
s44=((x-k(1))*s33+(k(5)-x)*s34)/(k(5)-k(1));
printf( 's11=%f\t s22=%f\t s23=%f\t s33=%f\t s34=%f\t s44=%f\n\n',s11,s22,s23,s33,s34,s44);
x=2;//for x=2;
s11=0;s12=0,s14=0;s22=0;
s13=1/(k(4)-k(3));
s23=((x-k(2))*s12+(k(4)-x)*s13)/(k(4)-k(2));
s24=((x-k(3))*s13+(k(5)-x)*s14)/(k(3)-k(1));
s33=((x-k(1))*s22+(k(4)-x)*s23)/(k(4)-k(1));
s34=((x-k(2))*s23+(k(5)-x)*s24)/(k(5)-k(2));
s44=((x-k(1))*s33+(k(5)-x)*s34)/(k(5)-k(1));
printf( 's13=%f\t s23=%f\t s24=%f\t s33=%f\t s34=%f\t s44=%f\n\n',s13,s23,s24,s33,s34,s44); |
854ea0fc2d88911ac5643f0785086294cfecc699 | 05df9394f5d45c0bddbd52e4aad8c8210e9e2743 | /Data Communication/FM.sci | 9d68ddb296c7e9d847a42958388b246d32528ad6 | [] | no_license | pikabing/Scilab | a9fd34b70be3bd552f47fafc409bf7c88573ac7a | 87f2cc1914bfdb6c24a54960e9c49191bbd1f1ad | refs/heads/master | 2020-03-10T09:34:56.522084 | 2018-04-12T21:51:52 | 2018-04-12T21:51:52 | 129,311,712 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 440 | sci | FM.sci | // generating FM waveform using Scilab
function[] = fmmod(Am,Ac,fm,fc,fs)
t = 0:1/fs:1
Vm = Am*sin(2*%pi*fm*t)
Vc = Ac*sin(2*%pi*fc*t)
k = 1.5
Mt = Ac*cos(2*%pi*fc*t + ((k*Am)*sin(2*%pi*fm*t))/(2*%pi*fm));
subplot(3,1,1)
plot(Vm)
title('Modulating Signal')
subplot(3,1,2)
plot(Vc)
title('Carrier Signal')
subplot(3,1,3)
plot(Mt)
title('Modulated Signal')
endfunction
|
62786389441bb278f871017e77af21180746c24b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH14/EX14.24/Ex14_24.sce | 7434bac1ca4b43e8e8427f89912deddb9bc32ca6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | Ex14_24.sce | //Calculations
//Speed and acceleration of D
sD=((18-6)/18)*12 //in/s
aD=(12/18)*18 //in/s^2
//Speed and acceleration of F
sF=(6/12)*8 //in/s
aF=(6/12)*12 //in/s^2
//Result
clc
printf('The velocity and acceleration of weight A are %iin/s and %iin/s^2 respectively',sF,aF)
|
8f06abc6526144b9c0119775d50ab75d47726b62 | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH3/EX3.31/ex3_31.sce | 2cc7e9115af998616b6a75e6f93f730966f5de0b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 122 | sce | ex3_31.sce | //Example 3.31
printf("\n Enter a letter(in lower case):")
a=scanf("%1c");
a=convstr(a,'u');
printf("\n %c ",a); |
ea423ff845266603cc9cf03c41d4de1953fde6b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH22/EX22.05/22_05.sce | 01c74d0585da1c02685c99c45c3b862e99c34192 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,823 | sce | 22_05.sce | clear;
clc;
r=10e6;
v=11e3;
e=1;
x1=.26*%i;
x2=.18*%i;
x0=.36*%i;
ia1=e/(x1+(x0*x2/(x0+x2)));
va1=e-(ia1*x1);
va2=va1;
va0=va2;
ia2=-va2/x2;
ia0=-va0/x0;
a=1*%e^(%i*(120*%pi/180));
b=a^2;
ia=(ia0+ia1+ia2);
ib=(ia0+(b*ia1)+(a*ia2));
ic=(ia0+(a*ia1)+(b*ia2));
i=r/(sqrt(3)*v);
ia=ia*i;
ib=ib*i;
ic=ic*i;
ia0r=real(ia);
ia0i=imag(ia);
iam=sqrt((ia0r^2)+(ia0i^2));
ia1r=real(ib);
ia1i=imag(ib);
ibm=sqrt((ia1r^2)+(ia1i^2));
ia2r=real(ic);
ia2i=imag(ic);
icm=sqrt((ia2r^2)+(ia2i^2));
icm=round(icm);
ibm=round(ibm);
iaa=0;
iba=180+atand(ia1i/ia1r);
ica=atand(ia2i/ia2r);
mprintf("the symmetric components are \n ia0=%f+j%f A \tor\t %f/_%d A",ia0r,ia0i,iam,iaa);
mprintf("\n ib=%f+j%f A \tor\t %f/_%d A",ia1r,ia1i,ibm,iba);
mprintf("\n ic=%f+j(%f) A \tor\t %f/_%d A",ia2r,ia2i,icm,ica);
in=ib+ic;
mprintf("\nneutal current In=%fA",(imag(in)*1310));
//at generator
x1=.16*%i;
x2=.08*%i;
x0=.06*%i;
va1=1-(ia1*x1);
va2=-ia2*x2;
va0=ia0*x0;
va=(va0+va1+va2);
vb=(va0+(b*va1)+(a*va2));//the difference in result is due to erroneous calculation in textbook.
vc=(va0+(a*va1)+(b*va2));
v=v/sqrt(3);
va=v*va/1e3;
vb=v*vb/1e3;
vc=v*vc/1e3;
va0r=real(va);
va0i=imag(va);
va0m=sqrt((va0r^2)+(va0i^2));
va0a=atand(va0i/va0r);
va1r=real(vb);
va1i=imag(vb);
va1m=sqrt((va1r^2)+(va1i^2));
va1a=atand(va1i/va1r);
va2r=real(vc);
va2i=imag(vc);
va2m=sqrt((va2r^2)+(va2i^2));
va2a=atand(va2i/va2r);
mprintf("\nthe voltage levels are \n va=%f+j%f kV \tor\t %f/_%d kV",va0r,va0i,va0m,va0a);
mprintf("\n vb=%f+j(%f) kV \tor\t %f/_%d kV",va1r,va1i,va1m,va1a);//the difference in result is due to erroneous calculation in textbook.
mprintf("\n vc=%f+j(%f) kV \tor\t %f/_%d kV",va2r,va2i,va2m,va2a);
disp("the difference in result is due to erroneous calculation in textbook.");
|
9e765be74f493982f38a492f52657fa279c732e8 | 86b07272c2e128fdec8e3fb2a793cd56b3f8876d | /test/scenarios/post-base-2.sce | b04b5353f04ab51fc80dff850f87cf3a84bdf52b | [
"MIT"
] | permissive | jimjag/ls-qpack | f582623269c38006f997ab5ac1bd597d960dcc19 | 79c136923681d7187feade455225543335525c3f | refs/heads/master | 2023-06-01T08:21:41.291968 | 2023-05-26T12:37:58 | 2023-05-26T12:37:58 | 211,070,438 | 0 | 0 | MIT | 2019-09-26T11:13:34 | 2019-09-26T11:13:34 | null | UTF-8 | Scilab | false | false | 301 | sce | post-base-2.sce | # This scenario is designed to reach 'case DATA_STATE_LFPBNR_READ_VAL_PLAIN'
# in parse_header_data(). It has a number of repeated names with values that
# would be too small for Huffman coding.
TABLE_SIZE=256
AGGRESSIVE=1
RISKED_STREAMS=1
QIF=$(cat<<'EOQ'
dude n
dude nu
dude where is my car?
EOQ
)
|
7424115180ed1ff2c22fa4637c50d601c4f773db | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH7/EX7.4/Ex7_4.sce | b8966b2d0929bd040ced2833b8ca5cd5259562ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 795 | sce | Ex7_4.sce | //Initilization of variables
l=12 //m
theta1=30 //degrees
F1=1000 //N
F2=2000 //N
//Calculation
FG=l*cosd(theta1) //m
DG=(l+(l/2))/cosd(theta1) //m
//Taking moment about point G
A=(F1*l+F2*FG+F1*DG)/(l*3) //N
//Summing forces in horizontal direction
G_x=(2*F1+F2)*sind(theta1) //N
//Summing forces in the vertical direction
G_y=(2*F1+F2)*cosd(theta1)+F1-A //N
//Taking moment about point C
BD=-(A*l)/(l/2) //N
//Taking moment about point D
CE=(A*(l+(l/2)))/FG //N
theta=atand((l/2)/FG) //degrees
//Summing forces in the vertical direction
CD=(A+(BD*cosd(60)))/cosd(theta) //N
//Result
clc
printf('The values of the forces are as follows\n')
printf('A=%fN,G_x=%fN,G_y=%fN,BD=%fN,CE=%fN and CD=%fN',A,G_x,G_y,BD,CE,CD)
//Decimal Accuracy causes discrepancy in answers
|
b1fb93bb349350e26b8fc11af2c4a5773c467ae9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3876/CH3/EX3.4/Ex3_4.sce | fc11da87a86db5e3aed7d310a2b8fee63da2cf90 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 239 | sce | Ex3_4.sce | //Chapter 3 Liquids
clc;
clear;
//Initialisation of Variables
n2= 10.05*10**-3 //poise
d1= 0.879 //gms cm^-3
t= 88 //sec
d2= 1 //gms cm^-3
t1= 120 //sec
//Calculations
n1= d1*t/(d2*t1)
//Results
mprintf("Relative Viscosity= %.3f",n1);
|
5b1daeab6dfb7b314dc34e728b82a232b1ab3cc7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3683/CH5/EX5.12/Ex5_12.sce | 2ff93fdfe792c1ba8f9e230df81e65e0eeecca4b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,519 | sce | Ex5_12.sce | b=450//width, in mm
D=900//depth, in mm
c=80//cover, in mm
d=D-c//in mm
Asc=4000//in sq mm
Ast=Asc//in sq mm
P=500//in kN
e=600//in mm
m=18.66
//equation for x is: x^2 + (k1 - k2 / sigma_cbc_dash) x - k3 = 0
k1=2/b*((1.5*m-1)*Asc+m*Ast)
k2=2*P*10^3/b
k3=2/b*(c*(1.5*m-1)*Asc+d*m*Ast)
//equation for sigma_cbc_dash is: sigma_cbc_dash = Q1 x /(Q2 x^2 (d - x/3) + Q3 (x - c))
Q1=P*10^3*(e+d-D/2)
Q2=b/2
Q3=(1.5*m-1)*(d-c)*Asc
sigma_cbc_dash=7//assume, in MPa
//solving equation for x
p=1
q=(k1-k2/sigma_cbc_dash)
r=-k3
x=(-q+sqrt(q^2-4*p*r))/2/p//in mm
sigma_cbc_dash = Q1*x/(Q2*x^2*(d-x/3)+Q3*(x-c))//in MPa
//this process is repeated till convergence
//solving equation for x
p=1
q=(k1-k2/sigma_cbc_dash)
r=-k3
x=(-q+sqrt(q^2-4*p*r))/2/p//in mm
sigma_cbc_dash = Q1*x/(Q2*x^2*(d-x/3)+Q3*(x-c))//in MPa
//solving equation for x
p=1
q=(k1-k2/sigma_cbc_dash)
r=-k3
x=(-q+sqrt(q^2-4*p*r))/2/p//in mm
sigma_cbc_dash = Q1*x/(Q2*x^2*(d-x/3)+Q3*(x-c))//in MPa
//solving equation for x
p=1
q=(k1-k2/sigma_cbc_dash)
r=-k3
x=(-q+sqrt(q^2-4*p*r))/2/p//in mm
sigma_cbc_dash = Q1*x/(Q2*x^2*(d-x/3)+Q3*(x-c))//in MPa
//solving equation for x
p=1
q=(k1-k2/sigma_cbc_dash)
r=-k3
x=(-q+sqrt(q^2-4*p*r))/2/p//in mm
sigma_cbc_dash = Q1*x/(Q2*x^2*(d-x/3)+Q3*(x-c))//in MPa
//solving equation for x
p=1
q=(k1-k2/sigma_cbc_dash)
r=-k3
x=(-q+sqrt(q^2-4*p*r))/2/p//in mm
sigma_sc=m*sigma_cbc_dash*(x-c)/x//in MPa
sigma_st=m*sigma_cbc_dash*x/(d-x)//in MPa
//answer in textbook is incorrect
|
c77491c833cf0371d80b02668fa08a3bc6dc140d | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3/Unix-Windows/scilab-2.3/macros/scicos_blocks/scifunc_block.sci | 7d3fa451e2ec3967c7aea2570f8bd4081e1d05a3 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 4,630 | sci | scifunc_block.sci | function [x,y,typ]=scifunc_block(job,arg1,arg2)
//%Description
// job=='plot' : block drawing
// arg1 is block data structure
// arg2 :unused
// job=='getinputs' : return position and type of inputs ports
// arg1 is block data structure
// x : x coordinates of ports
// x : y coordinates of ports
// typ: type of ports
// job=='getoutputs' : return position and type of outputs ports
// arg1 is block data structure
// x : x coordinates of ports
// x : y coordinates of ports
// typ: type of ports
// job=='getorigin' : return block origin coordinates
// x : x coordinates of block origin
// x : y coordinates of block origin
// job=='set' : block parameters acquisition
// arg1 is block data structure
// x is returned block data structure
// job=='define' : corresponding block data structure initialisation
// arg1: name of block parameters acquisition macro
// x : block data structure
//%Block data-structure definition
// bl=list('Block',graphics,model,init,'standard_block')
// graphics=list([xo,yo],[l,h],orient,label)
// xo - x coordinate of block origin
// yo - y coordinate of block origin
// l - block width
// h - block height
// orient - boolean, specifies if block is tilded
// label - string block label
// model=list(eqns,#input,#output,#clk_input,#clk_output,state,..
// rpar,ipar,typ [,firing])
// eqns - function name (in string form if fortran routine)
// #input - vector of input port sizes
// #output - vector of ouput port sizes
// #clk_input - vector of clock inputs port sizes
// #clk_output - vector of clock output port sizes
// state - vector (column) of initial condition
// rpar - vector (column) of real parameters
// ipar - vector (column) of integer parameters
// typ - string: 'c' if block is continuous, 'd' if discrete
// 'z' if zero-crossing.
// firing - vector of initial ouput event firing times
//
x=[];y=[];typ=[];
select job
case 'plot' then
standard_draw(arg1)
case 'getinputs' then
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
needcompile=0
x=arg1
model=arg1(3);graphics=arg1(2);
label=graphics(4)
while %t do
[ok,i,o,ci,co,xx,z,type_,rpar,auto0,lab]=..
getvalue('Set scifunc_block parameters',..
['input ports sizes';
'output port sizes';
'input event ports sizes';
'output events ports sizes';
'initial continuous state';
'initial discrete state';
'System type (c,d,z or l)';
'System parameters vector';
'initial firing vector (<0 for no firing)'],..
list('vec',-1,'vec',-1,'vec',-1,'vec',-1,'vec',-1,'vec',-1,..
'str',1,'vec',-1,'vec','sum(x4)'),label(1))
if ~ok then break,end
label(1)=lab
type_=stripblanks(type_)
xx=xx(:);z=z(:);rpar=rpar(:)
nrp=prod(size(rpar))
// create simulator
i=int(i(:));ni=size(i,1);
o=int(o(:));no=size(o,1);
ci=int(ci(:));nci=size(ci,1);
co=int(co(:));nco=size(co,1);
[ok,tt,dep_ut]=genfunc1(label(2),i,o,nci,nco,size(xx,1),size(z,1),..
nrp,type_)
if ~ok then break,end
[model,graphics,ok]=check_io(model,graphics,i,o,ci,co)
if ok then
auto=auto0
model(6)=xx
model(7)=z
model(8)=rpar
if or(model(9)<>tt) then needcompile=4,end
model(9)=tt
model(10)=type_
model(11)=auto
model(12)=dep_ut
x(3)=model
label(2)=tt
graphics(4)=label
x(2)=graphics
break
end
end
needcompile=resume(needcompile)
case 'define' then
in=1
out=1
clkin=[]
clkout=[]
x0=[]
z0=[]
typ='c'
auto=[]
rpar=[]
model=list(list('scifunc',3),in,out,clkin,clkout,x0,z0,rpar,0,typ,auto,[%t %f],..
' ',list());
label=list([sci2exp(in);sci2exp(out);sci2exp(clkin);sci2exp(clkout);
strcat(sci2exp(x0));strcat(sci2exp(z0));typ;
strcat(sci2exp(rpar));sci2exp(auto)],..
list('y=sin(u)',' ',' ','y=sin(u)',' ',' ',' '))
gr_i=['xstringb(orig(1),orig(2),''Scifunc'',sz(1),sz(2),''fill'');']
x=standard_define([2 2],model,label,gr_i)
end
|
4bf97e9b2097a045cf0e41a8b6c5eb15ac5d46b8 | 4545588c8427debaf17f9dc71b0ace32f4fb5d67 | /avr32/services/dsp/dsplib/utils/scripts/benchmark/resources/ref_fft.sce | e56fee5d17731274b8943b4f239b87a1f291b8fb | [] | no_license | eewiki/asf | 02e06cec0465b28dd689dea801e6be6cbcd47eca | 8d0f55bd089f2e68d2b53aa76adbb02c07cdb166 | refs/heads/master | 2021-01-16T18:20:22.690176 | 2015-03-09T05:42:50 | 2015-03-09T05:42:50 | 18,419,213 | 34 | 30 | null | 2014-12-25T05:13:20 | 2014-04-03T21:42:46 | C | UTF-8 | Scilab | false | false | 109 | sce | ref_fft.sce | y_size = 2^NLOG;
t = 0:(y_size-1);
vect2_input = sin(2*%pi*4000*t/40000);
y = fft(vect2_input)/y_size;
|
40b9386fe3b23ac57b5f8008a062b618a09e7d2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1883/CH2/EX2.2.6/Example2_6.sce | b45e1cbd10512f0470be8964bdd3fa0eaca79f84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 387 | sce | Example2_6.sce | //Chapter-2,Example2_2_6,pg 2-12
a=2*10^-6 //width of slit
n=1 //for first minimum
wavelength=6500*10^-10 //wavelength of light
angle=asind(n*wavelength/a) //angular seperation
printf('\nThe half angular width of a principal maximum is angle =%.2f degrees\n',angle)
|
716ba00890938fb9fd975c03f45f934bb0f75db2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH6/EX6.13/exa_6_13.sce | 40aea9ebabe79f9a4073225a75aefa192c6919b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 504 | sce | exa_6_13.sce | // Exa 6.13
clc;
clear;
close;
// Given data
P=10000;// in ohm
Q=10;// in ohm
S=5;// in kohm
S=S*10^3;// in ohm
E=12;// in volt
R=P*S/Q;// in ohm
disp(R*10^-6,"The maximum value of resistance that can be measurement with the given argument in Mohm")
R_Th= R*S/(R+S)+ P*Q/(P+Q);// in ohm
// Part (ii)
theta= 2.5;// in mm
Rg=100;// in ohm
Si=100;// in mm/miuA
Si=Si*10^6;// in mm/amp
del_R= theta*(R_Th+Rg)*(R+S)^2/(Si*E*S);// in ohm
disp(del_R*10^-3,"Change in resistance in kohm")
|
b267a1e8d65b48cb405879507f52d6f21067f984 | 881e0bcc7118244a24f736786ac36140acfb885e | /yeast/results/GAssist-ADI-C.yeast-4/result1s0.tst | ff15ed8e91eee433cb1f01558031f4dd11d09888 | [] | no_license | woshahua/Experiment_File | 3e34e5a4a622d6d260fbdf8d5ef2711712aad9bc | 6a139cd3f779373799cb926ba90d978235b0de0d | refs/heads/master | 2021-01-01T06:57:13.285197 | 2017-07-28T08:17:38 | 2017-07-28T08:17:38 | 97,557,409 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,593 | tst | result1s0.tst | @relation yeast-4
@attribute Mcg real [0.11, 1.0]
@attribute Gvh real [0.13, 1.0]
@attribute Alm real [0.21, 1.0]
@attribute Mit real [0.0, 1.0]
@attribute Erl real [0.5, 1.0]
@attribute Pox real [0.0, 0.83]
@attribute Vac real [0.0, 0.73]
@attribute Nuc real [0.0, 1.0]
@attribute Class {MIT, NUC, CYT, ME1, ME2, ME3, EXC, VAC, POX, ERL}
@inputs Mcg, Gvh, Alm, Mit, Erl, Pox, Vac, Nuc
@outputs Class
MIT MIT
CYT MIT
MIT ME3
MIT MIT
MIT MIT
NUC NUC
MIT CYT
EXC ME1
MIT ME1
ME3 ME3
CYT CYT
CYT NUC
NUC NUC
ME3 ME3
ME3 ME3
CYT MIT
CYT CYT
MIT NUC
MIT MIT
MIT MIT
ERL ME1
CYT CYT
MIT MIT
NUC CYT
NUC NUC
NUC CYT
ME2 ME3
ME3 ME3
ME2 CYT
ME3 ME3
POX CYT
NUC NUC
CYT CYT
ME3 ME3
NUC NUC
ME3 ME3
NUC NUC
CYT CYT
NUC NUC
NUC NUC
MIT MIT
NUC NUC
NUC MIT
MIT CYT
NUC CYT
MIT NUC
NUC NUC
MIT CYT
ME3 ME3
NUC MIT
ME3 ME3
NUC NUC
CYT CYT
MIT MIT
ME2 NUC
MIT CYT
MIT CYT
EXC CYT
NUC CYT
NUC CYT
MIT ME3
CYT NUC
CYT CYT
NUC CYT
MIT MIT
ME1 ME1
NUC CYT
NUC CYT
NUC CYT
NUC CYT
POX MIT
NUC MIT
NUC NUC
NUC CYT
CYT CYT
CYT MIT
CYT CYT
MIT NUC
NUC NUC
NUC NUC
NUC NUC
CYT CYT
CYT MIT
CYT MIT
CYT CYT
MIT MIT
CYT NUC
CYT MIT
CYT CYT
CYT NUC
CYT CYT
CYT NUC
CYT CYT
ME3 ME3
ME3 ME3
NUC CYT
NUC CYT
NUC MIT
CYT CYT
CYT CYT
NUC ME3
CYT CYT
ME1 ME1
NUC NUC
NUC CYT
NUC NUC
CYT MIT
CYT NUC
CYT NUC
CYT CYT
ME1 ME1
ME1 ME1
CYT CYT
CYT CYT
CYT CYT
NUC CYT
CYT CYT
CYT CYT
VAC CYT
VAC NUC
CYT CYT
VAC CYT
ME3 ME3
ME3 ME3
ME3 ME3
EXC ME1
ME3 MIT
ME2 MIT
MIT CYT
MIT MIT
CYT CYT
NUC ME3
CYT CYT
ME3 ME3
CYT NUC
NUC NUC
NUC CYT
NUC CYT
ME2 NUC
CYT NUC
MIT MIT
CYT CYT
MIT MIT
NUC CYT
CYT NUC
CYT NUC
CYT NUC
ME3 ME3
NUC CYT
|
84e0ddbf3bffefb2fc922c20fa8f30ba319a3b92 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH5/EX5.9/5_9.sce | 7f6bd190c5b9969feb79b23804c3c3981897eb75 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 233 | sce | 5_9.sce | clc
//Initialization of variables
g=9.81 //m/s^2
rho=10^3 //kg/m^3
Q=0.012 //m^3/s
z=10 //m
d=0.075 //m
//calculations
Vb=Q/(%pi/4 *d^2)
Hm=z+ Vb^2 /(2*g)
P=Hm*rho*g*Q
//results
printf("Power required = %.3f kW",P/1000)
|
0c9a19a8aad6595b5187419e2b6c6884d31f7345 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/TFA1.prev.tst | adb18d88e774f628fad3422d4d5cf34cdbf13d7a | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,087 | tst | TFA1.prev.tst | TranspositionSet={[1,0,2,3]}
considerNonPrimitive
Expanding for base=2, level=3, reasons+features=base,transpose,primitive,same,similiar,evenexp igtriv,invall,norm
Refined variables=a,b,c,d
[0+1a,0+1b,0+1c,0+1d]: unknown -> [1] [0,0,0,0] a²+b²-c²; a*b-2d²
---------------- level 0
expanding queue[0]^-1,meter=[2,2,2,2]: a²+b²-c²; a*b-2d²
[0+2a,0+2b,0+2c,0+2d]: non-primitive
[1+2a,0+2b,1+2c,0+2d]: unknown -> [1] [1,0,1,0] a+a²+b²-c-c²; b+2a*b-4d²
[0+2a,1+2b,1+2c,0+2d]: transposed [1] by [1,0,2,3]
[1+2a,0+2b,1+2c,1+2d]: unknown -> [2] [1,0,1,1] a+a²+b²-c-c²; b+2a*b-4d-4d²-1
[0+2a,1+2b,1+2c,1+2d]: transposed [2] by [1,0,2,3]
endexp[0]
---------------- level 1
expanding queue[1]^0,meter=[2,2,2,2]: a+a²+b²-c-c²; b+2a*b-4d²
[1+4a,0+4b,1+4c,0+4d]: unknown -> [3] [0,0,0,0] a+2a²+2b²-c-2c²; b+4a*b-8d²
[3+4a,0+4b,1+4c,0+4d]: unknown -> [4] [1,0,0,0] 3a+2a²+2b²-c-2c²+1; 3b+4a*b-8d²
[1+4a,0+4b,3+4c,0+4d]: negative-1 [3] by {c=>-c-1}
[3+4a,0+4b,3+4c,0+4d]: negative-1 [4] by {c=>-c-1}
[1+4a,0+4b,1+4c,2+4d]: unknown -> [5] [0,0,0,1] a+2a²+2b²-c-2c²; b+4a*b-8d-8d²-2
[3+4a,0+4b,1+4c,2+4d]: unknown -> [6] [1,0,0,1] 3a+2a²+2b²-c-2c²+1; 3b+4a*b-8d-8d²-2
[1+4a,0+4b,3+4c,2+4d]: negative-1 [5] by {c=>-c-1}
[3+4a,0+4b,3+4c,2+4d]: negative-1 [6] by {c=>-c-1}
endexp[1]
expanding queue[2]^0,meter=[2,2,2,2]: a+a²+b²-c-c²; b+2a*b-4d-4d²-1
endexp[2]
---------------- level 2
expanding queue[3]^1,meter=[2,2,2,2]: a+2a²+2b²-c-2c²; b+4a*b-8d²
[1+8a,0+8b,1+8c,0+8d]: unknown -> [7] [0,0,0,0] a+4a²+4b²-c-4c²; b+8a*b-16d²
[5+8a,0+8b,5+8c,0+8d]: unknown -> [8] [1,0,1,0] 5a+4a²+4b²-5c-4c²; 5b+8a*b-16d²
[1+8a,0+8b,1+8c,4+8d]: unknown -> [9] [0,0,0,1] a+4a²+4b²-c-4c²; b+8a*b-16d-16d²-4
[5+8a,0+8b,5+8c,4+8d]: unknown -> [10] [1,0,1,1] 5a+4a²+4b²-5c-4c²; 5b+8a*b-16d-16d²-4
endexp[3]
expanding queue[4]^1,meter=[2,2,2,2]: 3a+2a²+2b²-c-2c²+1; 3b+4a*b-8d²
[7+8a,0+8b,1+8c,0+8d]: unknown -> [11] [1,0,0,0] 7a+4a²+4b²-c-4c²+3; 7b+8a*b-16d²
[3+8a,0+8b,5+8c,0+8d]: unknown -> [12] [0,0,1,0] 3a+4a²+4b²-5c-4c²-1; 3b+8a*b-16d²
[7+8a,0+8b,1+8c,4+8d]: unknown -> [13] [1,0,0,1] 7a+4a²+4b²-c-4c²+3; 7b+8a*b-16d-16d²-4
[3+8a,0+8b,5+8c,4+8d]: unknown -> [14] [0,0,1,1] 3a+4a²+4b²-5c-4c²-1; 3b+8a*b-16d-16d²-4
endexp[4]
expanding queue[5]^1,meter=[2,2,2,2]: a+2a²+2b²-c-2c²; b+4a*b-8d-8d²-2
[1+8a,0+8b,1+8c,2+8d]: unknown -> [15] [0,0,0,0] a+4a²+4b²-c-4c²; b+8a*b-8d-16d²-1
[5+8a,0+8b,5+8c,2+8d]: unknown -> [16] [1,0,1,0] 5a+4a²+4b²-5c-4c²; 5b+8a*b-8d-16d²-1
[1+8a,0+8b,1+8c,6+8d]: negative-1 [15] by {d=>-d-1}
[5+8a,0+8b,5+8c,6+8d]: negative-1 [16] by {d=>-d-1}
endexp[5]
expanding queue[6]^1,meter=[2,2,2,2]: 3a+2a²+2b²-c-2c²+1; 3b+4a*b-8d-8d²-2
[7+8a,0+8b,1+8c,2+8d]: unknown -> [17] [1,0,0,0] 7a+4a²+4b²-c-4c²+3; 7b+8a*b-8d-16d²-1
[3+8a,0+8b,5+8c,2+8d]: unknown -> [18] [0,0,1,0] 3a+4a²+4b²-5c-4c²-1; 3b+8a*b-8d-16d²-1
[7+8a,0+8b,1+8c,6+8d]: negative-1 [17] by {d=>-d-1}
[3+8a,0+8b,5+8c,6+8d]: negative-1 [18] by {d=>-d-1}
endexp[6]
---------------- level 3
Maximum level 3 [19] mod 2: a²+b²-c²; a*b-2d²
|
95c2a05a91ab49b0bdda048650f4b70abaff7957 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH12/EX12.13/12_13.sce | f245fc9fb37164270414a847ef7d54f3b92a6e9e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 415 | sce | 12_13.sce | //Car and truck
//refer fig.12.14 and 12.15
u=12.5 //m/sec
//sT=10+12.5*t+(aT*t^2)/2
aT=-2 //m/sec^2
//t is the time at any instant after the brakes are applied
//sT=10+12.5*t-t^2
//distance moved by car
//sC=u*2+u*(t-2)+(aC*(t-2)^2)/2
//sT=sC
//Apply equations of motion
//we get quadratic equation whose solution gives
aC=-10/3 //m/sec^2
printf("the deceleration of the car is=%.2f m/sec^2",aC)
|
4dc5c85f3cfe4b69f8b52359e4763dc0ef80f28d | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/util/xdialog.sci | 37b1a25b67af7a084e49620d975b7c80a280cf5d | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 109 | sci | xdialog.sci | function [rep]=xdialog(labels,vali)
//
// Copyright INRIA
write(%io(2),'Obsolete function : use x_dialog ');
|
78ace6c3961e23ead7588a6f185a96b58dca0955 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/CH1/EX1.5/Example1_5.sce | 3c8e1df4a3cd352f3dd443816f0f10c879335121 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 414 | sce | Example1_5.sce | //Scilab Code for Example 1.5 of Signals and systems by
//P.Ramakrishna Rao
//Determine whether the given signal is periodic or not
//x(t)=cos(t)+sin(sqrt(2)*t)
clc;
clear;
syms t;
x=cos(t)+sin(sqrt(2)*t);
disp(x,'x(t)');
for t=0:1:100;
x(t+1)=cos(t)+sin(sqrt(2)*t);
end
t=0:1:100;
plot(t,x);
title('x(t)');
xlabel('Time in seconds');
disp('plotted the signal and shown that it is not periodic');
|
3bf3a2e6660bfd0d75953fe9c82cb9ddb7a2668b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1631/CH4/EX4.2.i/Ex4_2i.sce | 86f4adddd56130fb6a524c312f689c72011e6090 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 264 | sce | Ex4_2i.sce | //Caption:code word length
//Example 4.2.i
//page no 167
//find code word length
clc;
clear;
//Given data
bandwidth=4.2*10^6;
fm=bandwidth;
q=512// Quantization levels
//q=2^v
v=log10(512)/log10(2);
disp(v,"The code word legth is ");
disp("bits");
|
030a545a62e6cdc86f5826118aec460681dae22f | 449d555969bfd7befe906877abab098c6e63a0e8 | /761/CH19/EX19.4/19_4.sce | 91bd4713c9ccaf7562446ea1f5a64a4aa6e15983 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 488 | sce | 19_4.sce | clc;
// page no 709
// prob no 19.4
// A RGB video signal has normalized values as
R=0.2;G=0.4;B=0.8;
//The luminance signal is given as
Y=0.30*R+0.59*G+0.11*B;
disp(Y,'The luminance signal is');
//The in-phase component of the color signal is given as
I=0.60*R-0.28*G-0.32*B;
disp(I,'The in-phase component of the color signal is');
//The quadrature component of the color signal is given as
Q=0.21*R-0.52*G+0.31*B;
disp(Q,'The quadrature component of the color signal is'); |
deacf8bcbf9612fdcdd4fc88f5cac32d67704445 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH23/EX14.23.9/Ex14_23_9.sce | 927bbbd96c98729a6734df311b631d155339cef6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 178 | sce | Ex14_23_9.sce | //Section-14,Example-4,Page no.-PC.82
//To calculate the solubility of Ag_2CrO_4.
clc;
K_sp=(9*10^-12)
S=(K_sp/4)^(1/3)
disp(S,'Solubility product of Ag_2CrO_4(mol/dm^3)')
|
98a5ba0e4ebfbedca8dffd058be7dc6aa1f88590 | 654f57b5da36139b3b7a5e60506f20486fc1a20c | /2016_day_7.tst | 9cbf507d265558380b6db860cd12d786ff23fa53 | [] | no_license | plazmist/Advent | 1a29a7a52da227abd49199a8b3fa80e5c5812ebb | ca3e266566cec6c820d67d0d038dec0e500e32ed | refs/heads/master | 2021-01-20T01:59:26.177570 | 2017-04-26T14:09:09 | 2017-04-26T14:09:09 | 89,356,253 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 508 | tst | 2016_day_7.tst | abba[mnop]qrst
abcd[bddb]xyyx
aaaa[qwer]tyui
ioxxoj[asdfgh]zxcvbn
itgslvpxoqqakli[arktzcssgkxktejbno]wsgkbwwtbmfnddt[zblrboqsvezcgfmfvcz]iwyhyatqetsreeyhh
vqlnbtvojgdtchb[otldofiavlmzmcix]hqidiiujqigyojgrv[ozfdaqeikjttcugzudc]jcvznucmpzzwnnv[blfzwhciaomuugpmj]aabnfuksfyuzlif
bttmazihwuehdishz[gsgmhoykohwafksz]mfwbwxsjwiktfuzsd[qbgwyirvwgqtnjqaci]zjmhwxbeqgkywzsr[xgaqywmxwwvmbvhfw]jpnhpbxgygkddeimwik
ldmzuocyrnzdhakjzse[ppgxqgikmjrqzihzpwc]qyqshpkjozbkhly
aba[bab]xyz
xyx[xyx]xyx
aaa[kek]eke
zazbz[bzb]cdc |
617b8dd939ceb93a1df02c107b72e9a59847304a | ebd6f68d47e192da7f81c528312358cfe8052c8d | /swig/Examples/test-suite/scilab/inherit_missing_runme.sci | d68ab7e1fbe8fc0fad060c390d89986bbd646802 | [
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only",
"Apache-2.0"
] | permissive | inishchith/DeepSpeech | 965ad34d69eb4d150ddf996d30d02a1b29c97d25 | dcb7c716bc794d7690d96ed40179ed1996968a41 | refs/heads/master | 2021-01-16T16:16:05.282278 | 2020-05-19T08:00:33 | 2020-05-19T08:00:33 | 243,180,319 | 1 | 0 | Apache-2.0 | 2020-02-26T05:54:51 | 2020-02-26T05:54:50 | null | UTF-8 | Scilab | false | false | 305 | sci | inherit_missing_runme.sci | exec("swigtest.start", -1);
a = new_Foo();
b = new_Bar();
c = new_Spam();
checkequal(do_blah(a), "Foo::blah", "do_blah(a)");
checkequal(do_blah(b), "Bar::blah", "do_blah(b)");
checkequal(do_blah(c), "Spam::blah", "do_blah(c)");
delete_Foo(a);
delete_Bar(b);
delete_Spam(c);
exec("swigtest.quit", -1);
|
4850de0939ea877e9644d4a038d5a419db5436ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH8/EX8.5/5.sce | 29341220ceff50411ae46d5d38872fe40949d330 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 345 | sce | 5.sce |
//Variable declaration
mewe=0.36; //mobility of electrons(m**2/Vs)
mewh=0.17; //mobility of holes(m**2/Vs)
e=1.6*10**-19;
rhoi=2.12; //resistivity(ohm m)
//Calculation
ni=1/(rhoi*e*(mewe+mewh)); //intrinsic concentration(per m**3)
//Result
printf('intrinsic concentration is %0.3f *10**16 per m**3 \n',(ni/10**16)) |
ee4b90d2b1a151d298f33b9feab8c22ad4b680b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /389/CH13/EX13.4/Example13_4.sce | de09a72e3b3e582ea793269a5fa34f4749178220 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,051 | sce | Example13_4.sce | clear;
clc;
// Illustration 13.4
// Page: 758
printf('Illustration 13.4 - Page: 758\n\n');
// Solution
//***Data***//
// a:oil b:soyabean c:hexane
// Data=[100y*(Wt % oil in soln) 1/N(kg soln retained/kg insoluble solid)]
Data = [0 0.58;20 0.66;30 0.70];
// Soyabean feed:
percent_b = 20;// [soluble]
yF = 1;// [mass fraction oil,solid free basis]
// Solvent:
RNpPlus1 = 1;// [hexane,kg]
xNpPlus1 = 0;// [mass fraction oil]
// Leached Solids:
leached = 0.005;// [fraction of oil to be leached]
// Miscella:
percent_miscella = 10;// [percent of insoluble solid]
//**********//
N = zeros(3);
ystar_By_N = zeros(3);
for i = 1:3
N(i) = 1/Data(i,2);// [kg insoluble solid/kg soln retained]
ystar_By_N(i) = Data(i,1)/(100*N(i));// [kg oil/kg insoluble solid]
end
// Basis: 1 kg flakes introduced
// Soyabean feed:
mass_b = 1-(percent_b/100);// [insoluble,kg]
F = 1-mass_b;// [kg]
NF = mass_b/F;// [kg insoluble solid/kg oil]
// Leached Solids:
Ratio = leached/(1-leached);// [kg oil/kg insoluble solid]
// By interpolation:
Np = interpln([ystar_By_N';N'],Ratio);
miscella_b = (percent_miscella/100)*mass_b;// [Insoluble solid lost to miscella,kg]
leached_b = (1-(percent_miscella/100))*mass_b;// [Insoluble solid in miscella,kg]
ENp = leached_b/Np;// [kg soln retained]
retained_a = Ratio*leached_b;// [oil retained,kg]
retained_c = ENp-retained_a;// [Hexane retained,kg]
yNp = retained_a/ENp;// [mass fraction of oil in retained liquid]
// Miscella:
mass_c = 1-retained_c;// [kg]
mass_a = F-retained_a;// [kg]
R1 = mass_c+mass_a;// [clear miscella,kg]
x1 = mass_a/R1;// [mass fraction of oil in the liquid]
NR1 = miscella_b/R1;// [kg insoluble solid/kg soln]
// The operating diagram is shown in Fig 13.33 (Pg 759).
// Point R1 represents the cloudy miscella and is therefore is displaced from the axis of he graph at NR1. Point deltaR is located as usual and the stages determined with the N=0 axis for all the stages but the first.
printf("Between 4 and 5 stages are required\n"); |
778aaa7c920b828bac983c91beb16ebffc6a2e5f | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3.1/Unix-Windows/scilab-2.3/macros/auto/lqg.sci | 8547a46a7b40970d048dfb4c91c20982629a96c0 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 536 | sci | lqg.sci | function K=lqg(P,r)
// returns the (strictly proper) lqg (H2) controller
// for the augmented plant P
[A,B1,B2,C1,C2,D11,D12,D21,D22]=smga(P,r);
if norm(D11,1) <> 0 then warning('lqg: D11 is not zero! (set to zero)');end
//if norm(D22,1) <> 0 then warning('lqg: D22 is not zero!');end
dom=P(7);
if dom=[] then warning('lqg: time domain unspecified, assumed continuous');
dom='c';end
P12=syslin(dom,A,B2,C1,D12);
Kc=lqr(P12);
P21=syslin(dom,A,B1,C2,D21);
Kf=lqe(P21);
P22=syslin(dom,A,B2,C2,D22);
K=obscont(P22,Kc,Kf);
|
b29a8c16bbb675a5d18fb26748c93a21feaae679 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3809/CH15/EX15.7/EX15_7.sce | b13b2535ee920416ea5b359dd35f585f52e0ecb1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 544 | sce | EX15_7.sce | //Chapter 15, Example 15.7
clc
//Initialisation
g=2*10**5 //open loop gain
g2=1 //closed loop gain
ro=75 //ouput resistance
ri=2*10**6 //input resistance
//Calculation
ab=g/g2 //1 + AB
ro2=ro/ab //output resistance in ohm
ri2=ri*ab //input resistance in ohm
//Results
printf("Output Resistance = %.1f uOhm\n",ro2*10**6) //wrong answerin textbook
printf("Input Resistance = %d GOhm",ri2/10**9)
|
1c217841ebf8f2ebaed87081a0e8dc1c62eead9f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1694/CH3/EX3.15/EX3_15.sce | 937859c6969979615b828742ac86d1a2c330a17e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 343 | sce | EX3_15.sce | clear;
clc;
printf("\nEx3.15\n");
//page no.-132
//given
v=10^-6;........//velocity in m/s
m=10^-9;.......//mass in kg
a=10^-4;.......//width in m
h=6.62*10^-34;....//planck's constant in J-s
E=(m*v^2)/2......//kinetic energy in joule
n=sqrt((8*m*a^2*E)/h^2).........//quantum number
printf("\nquantum number is 3*10^14\n");
|
04ba2be3fec3ee0cf80e2f5f77334809ef62fcf9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2891/CH7/EX7.12/Ex7_12.sce | 56031b4c2852c43176b6069530bf8616d2962e9e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 489 | sce | Ex7_12.sce | //Exa 7.12
clc;
clear;
close;
// given :
c=3*10^8 // speed of light in m/s
f=2 // frequency in GHz
f=2*10^9 // frequency in Hz
lambda=c/f // wavelength in m
BWFN=12 // null-to-null main beam width in degrees
// formula : BWFN=140*(lambda/D_a)
D_a=140*lambda/BWFN // mouth diameter of paraboloid reflector in m
A=%pi*(D_a)^2/4 // Actual area in m^2
A_c=0.65*A // capture area in m^2
disp(D_a,"mouth diameter of paraboloid reflector in m:")
disp(A_c,"capture area in m^2:")
|
34b03f69f2f6ad3148f7662679e8caa27b6752eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /147/CH13/EX13.23/Example13_23.sce | 3c137ec68ca734cb34a7ce93dbde87ee1a1b0aa2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 801 | sce | Example13_23.sce | close();
clear;
clc;
//high voltage winding ratio 'R1', leakage reactance 'X1', low voltage winding resistance 'R2', low voltage leakage resistance 'X2'
X2 = 0.042; //ohm
V1 = 2400; //V
V2 = 120; //V
X1 = 0.22; //ohm
R1 = 0.1; //ohm
R2 = 0.035; //ohm
a = V1/V2;
P = 30*10^3; //VA
//resistance referred to HV winding 'R1_'
R1_ = R1 + (a^2)*R2; //ohm
//leakage reactance referred to HV side 'X1_'
X1_ = X1 + (a^2)*X2; //ohm
//impedance referred to HV side 'Z_'
Z_ = sqrt(R1_^2 + X1_^2); //ohm
//primary full load current 'I1'
I1 = P/V1; //A
//total copper loss 'Pc'
Pc = (I1^2)*Z_;
mprintf("Equivalent winding resistance = %0.1f ohm\n\n",R1_);
mprintf("Impedance referred to high voltage side = %0.3f ohm\n\n",Z_);
mprintf("Total copper loss of transformer = %0.4f kW",Pc/1000); |
94fa88090831f4ed607de365ac5e1168845d22d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH34/EX34.21/Ex34_21.sce | 3de341472bb2b8550b31ca67c7c7c6ddb056fdb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 75 | sce | Ex34_21.sce | clc;
R1=240;
R2=2.4*10**3;
Vo=1.25*(1+(R2/R1));
disp('V',Vo*1,"Vo=");
|
883807c7d10c81bbe951f1fcd7d64195a00143d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH39/EX39.5/Example39_5.sce | 5fc531d9c8674f6af1a3f76997c560394fb8c2fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,704 | sce | Example39_5.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART IV : UTILIZATION AND TRACTION
// CHAPTER 1: INDUSTRIAL APPLICATIONS OF ELECTRIC MOTORS
// EXAMPLE : 1.5 :
// Page number 682
clear ; clc ; close ; // Clear the work space and console
// Given data
V = 400.0 // IM voltage(V)
f = 50.0 // Frequency(Hz)
I_s = 5.0 // Full voltage starting current in terms of full load current
T_s = 2.0 // Full voltage starting torque in terms of full load torque
tap = 65.0 // Auto-tranformer tapping(%)
// Calculations
V_ph = V/3**0.5 // Phase voltage(V)
V_ph_motor = tap/100*V_ph // Motor phase voltage when auto-transformer is used(V)
I_ph_motor = tap/100*I_s // Motor phase current in terms of full load current
I_1 = tap/100*I_ph_motor // Line current from supply in terms of full load current
T = (tap/100)**2*T_s // Starting torque in terms of full load current
V_applied = V_ph/2**0.5 // Voltage to be applied to develop full-load torque(V)
I_line = V_applied/V_ph*I_s // Line current in terms of full load current
// Results
disp("PART IV - EXAMPLE : 1.5 : SOLUTION :-")
printf("\nCase(i): Motor current per phase = %.2f*I_fl ", I_ph_motor)
printf("\nCase(ii): Current from the supply, I_1 = %.2f*I_fl ", I_1)
printf("\nCase(iii): Starting torque with auto-transformer starter, T = %.3f*T_fl ", T)
printf("\nVoltage to be applied if motor has to develop full-load torque at starting, V = %.f V", V_applied)
printf("\nLine current from the supply to develop full-load torque at starting = %.2f*I_fl ", I_line)
|
283adbc778856bbd95fa693aebfd9edf2fa2d6ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /914/CH11/EX11.10/ex11_10.sce | 3a9884c47133a27d397702b3af34172bf2998bd8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,259 | sce | ex11_10.sce | clc;
warning("off");
printf("\n\n example11.10 - pg544");
// given
Ui=325; //[W/m^2*K] - overall heat transfer coefficient
Thi=120; //[degC] - inlet temperature of hydrocarbon
Tho=65; //[degC] - outlet temperature of hydrocarbon
Tci=15; //[degC] - inlet temperature of water
Tco=50; //[degC] - outlet temperture of water
cp=4184; //[J/kg*K] - heat capacity of water
ch=4184*0.45; //[J/kg*K] - heat capacity of hydrocarbon
wc=1.2; //[kg/sec] - mass flow rate of water
wh=((wc*cp)*(Tco-Tci))/((ch)*(Thi-Tho));
qtotal=wc*cp*(Tco-Tci);
// (a) - parallel double pipe
F=1;
Thi=120; //[degC] - inlet temperature of hydrocarbon
Tho=65; //[degC] - outlet temperature of hydrocarbon
Tci=15; //[degC] - inlet temperature of water
Tco=50; //[degC] - outlet temperture of water
deltaT1=Thi-Tci;
deltaT2=Tho-Tco;
LMTD=(deltaT2-deltaT1)/(log(deltaT2/deltaT1));
Ai=qtotal/((Ui*LMTD));
printf("\n\n (a) parallel double pipe \n Ai = %f m^2",Ai);
// (b) - counter flow
F=1;
Thi=120; //[degC] - inlet temperature of hydrocarbon
Tho=65; //[degC] - outlet temperature of hydrocarbon
Tco=15; //[degC] - inlet temperature of water
Tci=50; //[degC] - outlet temperture of water
deltaT1=Thi-Tci;
deltaT2=Tho-Tco;
LMTD=(deltaT2-deltaT1)/(log(deltaT2/deltaT1));
Ai=qtotal/((Ui*LMTD));
printf("\n\n (b) counter flow \n Ai = %f m^2",Ai);
// (c) - 1-2 shell and tube
Thi=120; //[degC] - inlet temperature of hydrocarbon
Tho=65; //[degC] - outlet temperature of hydrocarbon
Tci=15; //[degC] - inlet temperature of water
Tco=50; //[degC] - outlet temperture of water
Z=(Thi-Tho)/(Tco-Tci);
nh=(Tco-Tci)/(Thi-Tci);
deltaT1=Thi-Tco;
deltaT2=Tho-Tci;
F=0.92;
LMTD=(F*(deltaT2-deltaT1))/(log(deltaT2/deltaT1));
Ai=qtotal/((Ui*LMTD));
printf("\n\n (c) 1-2 shell and tube \n Ai = %f m^2",Ai);
// (d) - 2-4 shell and tube
Thi=120; //[degC] - inlet temperature of hydrocarbon
Tho=65; //[degC] - outlet temperature of hydrocarbon
Tci=15; //[degC] - inlet temperature of water
Tco=50; //[degC] - outlet temperture of water
Z=(Thi-Tho)/(Tco-Tci);
nh=(Tco-Tci)/(Thi-Tci);
F=0.975;
LMTD=(F*(deltaT2-deltaT1))/(log(deltaT2/deltaT1));
Ai=qtotal/((Ui*LMTD));
printf("\n\n (d) 2-4 shell and tube \n Ai = %f m^2",Ai);
|
a64cffbde0a03e2cff095246ee20b9830ca2a7b5 | b24d354cfcd174c92760535d8b71e22ced005d81 | /DSP functions/allpasslp2xn/test_9.sce | 3c78b631e5a904ea6ac065076d3582bfb0f8f46c | [] | no_license | shreniknambiar/FOSSEE-Signal-Processing-Toolbox | 57ad8e2a71d64f95c4ccfd131e00095cf2b9c6f8 | 143cf61eff31240870dc0c4f61e32818a4482365 | refs/heads/master | 2021-01-01T18:25:34.435606 | 2017-07-25T18:23:47 | 2017-07-25T18:23:47 | 98,334,322 | 0 | 0 | null | 2017-07-25T17:48:00 | 2017-07-25T17:47:59 | null | UTF-8 | Scilab | false | false | 388 | sce | test_9.sce | // Test #9 : For valid input case #2
exec('./allpasslp2xn.sci',-1);
[n,d]=allpasslp2xn([0.12 0.65 0.7],[0.4,0.9 0.97],'stop');
disp(d);
disp(n);
//
//Scilab Output
//d=1. 2.5769939 2.1642515 0.5838982
//n=0.5838982 2.1642515 2.5769939 1.
//
//Matlab Output
//n= 0.5839 2.1643 2.5770 1.0000
//d= 1.0000 2.5770 2.1643 0.5839
|
b1bf682b6c8a5ea7fbbb8ea69436651b6d9f0f7a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH19/EX19.11/169ex3.sce | 7ecac880cbb702f5a3f862344a4335f4bb51684f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 229 | sce | 169ex3.sce |
//logarithm : multiply -2.8763 by 3
clear;
clc;
close;
num=2.8763;//given
mantissa=0.8763;
mul=mantissa*3;
//when mantissa is multiplied, 2 is carried forward. (-2)*3=-6. the characteristic becomes -6+2=-4
val=-4.6289
|
4ed982b06f8bd4ba83bb4347f4b4ceb39d2f3ebc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH11/EX11.7/117.sce | 6efe8c6e85992876cf6783aa81e93481b103dff4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 311 | sce | 117.sce | // problem 11.7
Hg=500
hf=Hg/3
H=Hg-hf
Q=2
y=165
y2=180-y
g=9.81
w=9810
Cv=1
V1=Cv*(sqrt(2*g*H))
u=0.45*V1
Vr1=V1-u
Vw1=V1
Vr2=Vr1
Vw2=(Vr2*(cosd(y2)))-u
W=w*Q*(Vw1+Vw2)*u/g
P=W/1000
nh=2*u*(Vw1+Vw2)/(V1*V1)
disp(nh*100,P,"power given by the water to the runner in Kw,Hydraulic efficiency")
|
8ed8528b2ae31c3e9820fbae47d475c103c732d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH8/EX8.10.a/data8_10.sci | 395f2245f282faf6da11e276c71a30ca971f1c3b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | sci | data8_10.sci |
//(Welded and Riveted Joints) Example 8.10
//Refer Fig. 8.25 on page 287
//Eccentric force acting on the welded connection P (kN)
P = 60
//Permissible shear stress for the weld tau (N/mm2)
tau = 100
//Width of the plate w (mm)
w = 100
//Length of the transverse welds l (mm)
l = 50
//Force eccentricity e (mm)
e = 150 + (l/2)
|
8fe32a87c97e758f17e26e1ce8a487bd4bb6ca9b | 2cfae849db392e31f618642afd5297ae4143b318 | /tu/incr/incr.tst | da875050240b1d6a241d683844aa62a6f6c37068 | [] | no_license | albortholus/MT | 0ff55b55017db16c7591a53b11f18ab7e43fea32 | 4c690c45133bb9f1f9808ac203663445292dc43e | refs/heads/master | 2020-04-25T23:19:04.454405 | 2012-10-04T16:59:50 | 2012-10-04T16:59:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 25 | tst | incr.tst | 0
^
1
^
111
^
|
506d1e6adf3767baf8508c275873fe5bc0c2377a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH14/EX14.9/example14_9.sce | 0818aef3a9a3965a3dea4047b975ff43b7f7617a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 719 | sce | example14_9.sce | clc
// Given that
lambda = 4.35e-7 // wavelength of light in meter
lambda_ = 5.42e-7 // threshold wavelength of photoelectron in meter
h = 6.62e-34 // Planck constant in J-sec
c = 3e8 // speed of light in m/sec
e = 1.6e-19 // charge on an electron in C
m = 9.1e-31 // mass of an electron in kg
// Sample Problem 9 on page no. 14.22
printf("\n # PROBLEM 9 # \n")
printf("Standard formula used \n ")
printf(" 1/2 m*v^2 = eV \n E = h*c/lambda \n")
w = ((h * c) / lambda_)
v = sqrt(((2 * h * c) / m) * (1 / lambda - 1 / lambda_))
V = m * v^2 / (2 * e)
printf("\n Work function is %e J.\n Stopping potential is %f V.\n Maximum velocity is %e m/sec.",w,V,v)
|
24fde13daa24ae4a9c6666e8059f7e456cdb92f8 | 8fd5474ab7779b552e5f198a3ce4afc4d82cb47f | /bin/libPlot/PlotTriMesh.sci | 46be87fcd8ed932b4c90423493fc0f0c31d70843 | [] | no_license | 2-BiAs/UCASI_ALIGNMENT_SCAN | 807353741517c084007cdf978b149f34f8a13dae | 85b8d79f50e23051cbf365385b49e05293827941 | refs/heads/master | 2020-06-21T10:26:29.419281 | 2017-05-19T02:01:27 | 2017-05-19T02:01:27 | 74,790,458 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,303 | sci | PlotTriMesh.sci | function axOutput = PlotTriMesh(TriMesh)
iTriCount = size(TriMesh.iIndices, 1);
for i = 1:iTriCount
//Indices for single triangle
iT = TriMesh.iIndices(i, 1:3);
//mprintf("i = %d\n", i)
try
X(1:3, $+1) = [TriMesh.mVertices(iT(1),1); TriMesh.mVertices(iT(2),1); TriMesh.mVertices(iT(3),1)];
Y(1:3, $+1) = [TriMesh.mVertices(iT(1),2); TriMesh.mVertices(iT(2),2); TriMesh.mVertices(iT(3),2)];
Z(1:3, $+1) = [TriMesh.mVertices(iT(1),3); TriMesh.mVertices(iT(2),3); TriMesh.mVertices(iT(3),3)];
catch
printf('I be pausin here (in PlotTriMesh)');
pause;
end
end
figCurrent = scf();
figCurrent.color_map = jetcolormap(128);
axCurrent = gca();
axCurrent.isoview = "on"
plot3d(X, Y, Z);
disp('fart')
eSurf = gce();
//pause
tlistSurfData=eSurf.data;
tlistNewData = tlist(["3d" "x" "y" "z" "color"], tlistSurfData.x, tlistSurfData.y, tlistSurfData.z, tlistSurfData.z);
eSurf.data = tlistNewData;
eSurf.color_mode=-1; //remove the facets boundary
eSurf.color_flag=3; // interpolated shading mode
eSurf.cdata_mapping = 'scaled';
axOutput = gca();
endfunction
|
e836f2460c08b883f56c8d9329db94c00429e807 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH1/EX1.19/Ex1_19.sce | 1d9f99fea2d1889883cfc6f146631111803b278a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 336 | sce | Ex1_19.sce | //Ex1.19
clc
micro_n = 1300 //eletron mobility
rho_n = 2 //resistivity
e = 1.6*10^-19 //electron charge
disp("micro_n ="+string(micro_n)+" cm.sq/V-s")
disp("rho_n = "+string(rho_n)+"ohm-cm")
disp("e"+string(e)+"C")
disp("nn = 1/(e*micro_n*rho_n) = "+string(1/(e*micro_n*rho_n))+" e/cm.cube") //number of pentavalent impurity
|
098d548a3203f3b92615785ee489a6205305e20e | 449d555969bfd7befe906877abab098c6e63a0e8 | /527/CH2/EX2.8/2_8exam.sce | 64248f7f18cd2b1dfa8664974508d0e95ad36e67 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 497 | sce | 2_8exam.sce | //Engineering and Chemical Thermodynamics
//Example 2.8
//Page no :64
clear ; clc
// Given data
n_dot_air = 10 ; //[mol/min]
C_bar_P_900 = 30.71 ; //[J/molK]
C_bar_P_600 = 29.97 ; //[J/molK]
T1 = 600 ; //[K]
T2 = 900 ; //[K]
T_ref = 298 ; //[K]
// Q_dot = n_dot_air * (h_900 - h_600)...........Eqn E2.8A
Q_dot = n_dot_air * (C_bar_P_900 * (T2 - T_ref) - C_bar_P_600 * (T1 - T_ref));
disp(" Example: 2.8 Page no : 33") ;
printf('\n Heat rate required = %g J/min',Q_dot); |
9809778c5eb25df6d6157f50daffb88fdfb3b7dc | d422d2bd9c82ca6a247ec578514ee6d3b5fa48b7 | /local/lctrs/lssn_2/import.sce | 1e7fffd27695432fa00fd5cbb7a2b38deb3ba673 | [] | no_license | kirillin/python_ev3 | bee3d9682f848b188d6c3b967f37dfc5a4aa3080 | 58c34ad11588bdc05e53a8466d6a12fe2c1a6ab2 | refs/heads/master | 2020-08-04T22:52:07.665251 | 2017-01-06T15:17:10 | 2017-01-06T15:17:10 | 67,629,534 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 267 | sce | import.sce | clear;
angle = 10;
importXcosDiagram("/media/data/evo/python_ev3/local/lctrs/lssn_2/test_to_ws.zcos");
xcos_simulate(scs_m, 4);
plot(A.time, A.values);
a = gca();
a.children.children.thickness = 3;
xs2png(0, "/media/data/evo/python_ev3/local/lctrs/lssn_2/text.png");
|
99d94ab911555509f8de7162ad6897e81d66b76f | 449d555969bfd7befe906877abab098c6e63a0e8 | /761/CH5/EX5.2/5_2.sce | ad5d046950b0738e116568491717c3619f6ccdb3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 314 | sce | 5_2.sce | clc;
//page no 179
//prob no. 5.2
//A transmitter with carrier power o/p 10W at efficiency 70% at 100% modulatn
Po=10;eta=0.7;
//Determination of dc power o/p
Ps=Po/eta;
disp('W',Ps,'The value of dc power input is');
//Determination of audio power
Pa=0.5*Ps;
disp('W',Pa,'The value of audio power is'); |
9ac673cbe3bba0f4c2b352352b959b801b4fe568 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH2/EX2.17/Ex2_17.sce | cf4d0d86e6ee3d5d1f8da4db243c4b2f52082902 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 359 | sce | Ex2_17.sce | //pagenumber 113 example 17
clear
voltag=25;//volt
c1=10*10^-6;//farad
i1=100*10^-3;//ampere
ripple=0.001;
w=754;//radians
//(1) inductance and resistance
r1=voltag/i1;
induct=40/(sqrt(2)*w^2*(c1));
disp("inductance of filter = "+string((induct))+"henry");//correction in the book
disp("resistance of filter = "+string((r1))+"ohm");
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.