public ShutterStockCodec()
 {
     FrameCodec   = new FrameCodec(1);
     ReverseCodec = new ReverseCodec(0);
     CesarCodec   = new CesarCodec(4);
     PushCodec    = new PushCodec(-3);
 }
 public BookingCodec()
 {
     FrameCodec   = new FrameCodec(2);
     ReverseCodec = new ReverseCodec(0);
     CesarCodec   = new CesarCodec(-1);
     SwapCodec    = new SwapCodec(0);
 }