110491SRishi.Srivatsavai@Sun.COM/*
210491SRishi.Srivatsavai@Sun.COM * This file and its contents are supplied under the terms of the
310491SRishi.Srivatsavai@Sun.COM * Common Development and Distribution License ("CDDL"), version 1.0.
410491SRishi.Srivatsavai@Sun.COM * You may only use this file in accordance with the terms of version
510491SRishi.Srivatsavai@Sun.COM * 1.0 of the CDDL.
610491SRishi.Srivatsavai@Sun.COM *
710491SRishi.Srivatsavai@Sun.COM * A full copy of the text of the CDDL should have accompanied this
810491SRishi.Srivatsavai@Sun.COM * source.  A copy of the CDDL is also available via the Internet at
910491SRishi.Srivatsavai@Sun.COM * http://www.illumos.org/license/CDDL.
1010491SRishi.Srivatsavai@Sun.COM */
1110491SRishi.Srivatsavai@Sun.COM
1210491SRishi.Srivatsavai@Sun.COM/*
1310491SRishi.Srivatsavai@Sun.COM * Copyright (c) 2013 Joyent, Inc.  All rights reserved.
1410491SRishi.Srivatsavai@Sun.COM */
1510491SRishi.Srivatsavai@Sun.COM
1610491SRishi.Srivatsavai@Sun.COM#pragma D option agghist
1710491SRishi.Srivatsavai@Sun.COM#pragma D option quiet
1810491SRishi.Srivatsavai@Sun.COM
1910491SRishi.Srivatsavai@Sun.COMBEGIN
2010491SRishi.Srivatsavai@Sun.COM{
2110491SRishi.Srivatsavai@Sun.COM	@["demerit"] = sum(-10);
2210491SRishi.Srivatsavai@Sun.COM	@["wtf"] = sum(10);
2310491SRishi.Srivatsavai@Sun.COM	@["bot"] = sum(20);
2410491SRishi.Srivatsavai@Sun.COM
2510491SRishi.Srivatsavai@Sun.COM	@bagnoogle["SOAP/XML"] = sum(1);
2610491SRishi.Srivatsavai@Sun.COM	@bagnoogle["XACML store"] = sum(5);
2710491SRishi.Srivatsavai@Sun.COM	@bagnoogle["SAML token"] = sum(6);
2810491SRishi.Srivatsavai@Sun.COM
2910491SRishi.Srivatsavai@Sun.COM	@stalloogle["breakfast"] = sum(-5);
3010491SRishi.Srivatsavai@Sun.COM	@stalloogle["non-diet pepsi"] = sum(-20);
3110491SRishi.Srivatsavai@Sun.COM	@stalloogle["parrot"] = sum(-100);
3210491SRishi.Srivatsavai@Sun.COM
3310491SRishi.Srivatsavai@Sun.COM	printa(@);
3410491SRishi.Srivatsavai@Sun.COM	printa(@bagnoogle);
3510491SRishi.Srivatsavai@Sun.COM	printa(@stalloogle);
3610491SRishi.Srivatsavai@Sun.COM
3710491SRishi.Srivatsavai@Sun.COM	printf("\nzoomed:");
3810491SRishi.Srivatsavai@Sun.COM
3910491SRishi.Srivatsavai@Sun.COM	setopt("aggzoom");
4010491SRishi.Srivatsavai@Sun.COM	printa(@);
4110491SRishi.Srivatsavai@Sun.COM	printa(@bagnoogle);
4210491SRishi.Srivatsavai@Sun.COM	printa(@stalloogle);
4310491SRishi.Srivatsavai@Sun.COM
4410491SRishi.Srivatsavai@Sun.COM	exit(0);
4510491SRishi.Srivatsavai@Sun.COM}
4610491SRishi.Srivatsavai@Sun.COM
4710491SRishi.Srivatsavai@Sun.COM