card 1.15.1 → 1.15.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/card.gemspec +19 -16
- data/config/initializers/recaptcha.rb +1 -0
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +13 -14
- data/db/migrate_core_cards/20150326205655_bootswatch_themes.rb +30 -0
- data/db/migrate_core_cards/20150331135745_new_card_menu.rb +8 -0
- data/db/migrate_core_cards/20150508212032_menu_compatibility.rb +27 -0
- data/db/migrate_core_cards/20150510031118_fix_skin_images.rb +13 -0
- data/db/migrate_core_cards/data/1.12_stylesheets/classic_cards.scss +9 -5
- data/db/migrate_core_cards/data/1.12_stylesheets/common.scss +5 -5
- data/{test/fixtures/.gitkeep → db/migrate_core_cards/data/themes/bootstrap_default/_bootswatch.scss} +0 -0
- data/db/migrate_core_cards/data/themes/bootstrap_default/_variables.scss +866 -0
- data/db/migrate_core_cards/data/themes/cerulean/_bootswatch.scss +125 -0
- data/db/migrate_core_cards/data/themes/cerulean/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/cosmo/_bootswatch.scss +237 -0
- data/db/migrate_core_cards/data/themes/cosmo/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/cyborg/_bootswatch.scss +210 -0
- data/db/migrate_core_cards/data/themes/cyborg/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/darkly/_bootswatch.scss +330 -0
- data/db/migrate_core_cards/data/themes/darkly/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/flatly/_bootswatch.scss +313 -0
- data/db/migrate_core_cards/data/themes/flatly/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/journal/_bootswatch.scss +120 -0
- data/db/migrate_core_cards/data/themes/journal/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/lumen/_bootswatch.scss +496 -0
- data/db/migrate_core_cards/data/themes/lumen/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/paper/_bootswatch.scss +607 -0
- data/db/migrate_core_cards/data/themes/paper/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/readable/_bootswatch.scss +174 -0
- data/db/migrate_core_cards/data/themes/readable/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/sandstone/_bootswatch.scss +194 -0
- data/db/migrate_core_cards/data/themes/sandstone/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/simplex/_bootswatch.scss +142 -0
- data/db/migrate_core_cards/data/themes/simplex/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/slate/_bootswatch.scss +417 -0
- data/db/migrate_core_cards/data/themes/slate/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/spacelab/_bootswatch.scss +137 -0
- data/db/migrate_core_cards/data/themes/spacelab/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/superhero/_bootswatch.scss +332 -0
- data/db/migrate_core_cards/data/themes/superhero/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/united/_bootswatch.scss +42 -0
- data/db/migrate_core_cards/data/themes/united/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/yeti/_bootswatch.scss +437 -0
- data/db/migrate_core_cards/data/themes/yeti/_variables.scss +861 -0
- data/db/seed/README.md +2 -0
- data/db/{bootstrap → seed/new}/card_actions.yml +561 -295
- data/db/{bootstrap → seed/new}/card_acts.yml +1 -1
- data/db/seed/new/card_changes.yml +29331 -0
- data/db/{bootstrap → seed/new}/card_references.yml +1544 -1355
- data/db/seed/new/cards.yml +28057 -0
- data/db/seed/test/fixtures/.gitkeep +0 -0
- data/{test → db/seed/test}/fixtures/card_actions.yml +1501 -1235
- data/{test → db/seed/test}/fixtures/card_acts.yml +244 -244
- data/db/seed/test/fixtures/card_changes.yml +34527 -0
- data/{test → db/seed/test}/fixtures/card_references.yml +2215 -2026
- data/db/seed/test/fixtures/cards.yml +32708 -0
- data/{test → db/seed/test}/fixtures/mao2.jpg +0 -0
- data/{test → db/seed/test}/fixtures/rails.gif +0 -0
- data/{test → db/seed/test}/seed.rb +0 -0
- data/db/version_core_cards.txt +1 -1
- data/lib/card/format.rb +56 -56
- data/lib/cardio.rb +7 -5
- data/mod/01_core/chunk/include.rb +1 -1
- data/mod/01_core/set/all/fetch.rb +27 -27
- data/mod/01_core/set/all/rules.rb +53 -53
- data/mod/01_core/set/all/states.rb +5 -0
- data/mod/01_core/spec/format/html_format_spec.rb +6 -6
- data/mod/01_core/spec/set/all/rules2_spec.rb +6 -6
- data/mod/01_history/set/all/history.rb +4 -4
- data/mod/02_basic_types/set/all/rss.rb +10 -9
- data/mod/03_machines/lib/javascript/script_card_menu.js.coffee +20 -0
- data/mod/03_machines/lib/javascript/wagn.js.coffee +46 -34
- data/mod/03_machines/lib/javascript/wagn_mod.js.coffee +36 -148
- data/mod/03_machines/lib/stylesheets/style_bootstrap_compatible.css +10 -96
- data/mod/03_machines/lib/stylesheets/style_cards.scss +127 -87
- data/mod/03_machines/set/self/script_card_menu.rb +10 -2
- data/mod/05_email/set/all/follow.rb +38 -22
- data/mod/05_email/set/right/follow.rb +79 -1
- data/mod/05_email/set/type_plus_right/user/follow.rb +31 -31
- data/mod/05_email/spec/set/all/follow_spec.rb +37 -28
- data/mod/05_email/spec/set/right/followers_spec.rb +29 -29
- data/mod/05_standard/set/all/error.rb +17 -20
- data/mod/05_standard/set/all/links.rb +31 -18
- data/mod/05_standard/set/all/rich_html/content.rb +41 -18
- data/mod/05_standard/set/all/rich_html/editing.rb +21 -17
- data/mod/05_standard/set/all/rich_html/header.rb +13 -48
- data/mod/05_standard/set/all/rich_html/menu.rb +147 -0
- data/mod/05_standard/set/all/rich_html/modal.rb +54 -0
- data/mod/05_standard/set/all/rich_html/toolbar.rb +237 -0
- data/mod/05_standard/set/all/rich_html/wrapper.rb +43 -25
- data/mod/05_standard/set/right/account.rb +8 -7
- data/mod/05_standard/set/rstar/rules.rb +111 -84
- data/mod/05_standard/set/self/head.rb +15 -15
- data/mod/05_standard/set/type/set.rb +65 -34
- data/mod/05_standard/spec/set/all/attach_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/rich_html/wrapper_spec.rb +13 -9
- data/mod/05_standard/spec/set/rstar/rules_spec.rb +1 -1
- data/mod/06_bootstrap/lib/javascript/bootstrap.js +108 -97
- data/mod/06_bootstrap/lib/javascript/smartmenu.js +94 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_alerts.scss +73 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_badges.scss +68 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_button-groups.scss +243 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_buttons.scss +160 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_carousel.scss +269 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_close.scss +36 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_code.scss +69 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_component-animations.scss +37 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_dropdowns.scss +214 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_forms.scss +578 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_glyphicons.scss +305 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_grid.scss +84 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_input-groups.scss +166 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_jumbotron.scss +50 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_labels.scss +66 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_list-group.scss +124 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_media.scss +61 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_mixins.scss +39 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_modals.scss +150 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_navbar.scss +662 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_navs.scss +242 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_normalize.scss +427 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_pager.scss +54 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_pagination.scss +88 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_panels.scss +265 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_popovers.scss +135 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_print.scss +107 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_responsive-utilities.scss +177 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_scaffolding.scss +162 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_tables.scss +234 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_theme.scss +273 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_tooltip.scss +102 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_type.scss +298 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_utilities.scss +55 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_variables.scss +866 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_wells.scss +29 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/mod/06_bootstrap/lib/stylesheets/{bootswatch_mixins.scss → bootstrap/mixins/_vendor-prefixes.scss} +1 -61
- data/mod/06_bootstrap/lib/stylesheets/bootstrap_cards.scss +20 -13
- data/mod/06_bootstrap/lib/stylesheets/smartmenu.css +433 -0
- data/mod/06_bootstrap/set/all/bootstrap/wrapper.rb +2 -2
- data/mod/06_bootstrap/set/all/rich_bootstrap.rb +58 -4
- data/mod/06_bootstrap/set/self/bootstrap_js.rb +1 -1
- data/mod/06_bootstrap/set/self/bootswatch_shared.rb +32 -0
- data/mod/06_bootstrap/set/self/smartmenu_css.rb +7 -0
- data/mod/06_bootstrap/set/self/smartmenu_js.rb +7 -0
- data/spec/spec_helper.rb +16 -16
- metadata +133 -93
- data/db/bootstrap/card_changes.yml +0 -12765
- data/db/bootstrap/cards.yml +0 -11567
- data/db/seeds.rb +0 -8
- data/mod/03_machines/lib/javascript/script_card_menu.js +0 -72
- data/mod/06_bootstrap/lib/stylesheets/bootstrap_css.css +0 -6565
- data/mod/06_bootstrap/lib/stylesheets/theme_bootstrap_default.css +0 -476
- data/mod/06_bootstrap/lib/stylesheets/theme_cerulean.css +0 -6721
- data/mod/06_bootstrap/lib/stylesheets/theme_cosmo.css +0 -5898
- data/mod/06_bootstrap/lib/stylesheets/theme_cyborg.css +0 -5876
- data/mod/06_bootstrap/lib/stylesheets/theme_darkly.css +0 -5986
- data/mod/06_bootstrap/lib/stylesheets/theme_flatly.css +0 -6830
- data/mod/06_bootstrap/lib/stylesheets/theme_journal.css +0 -6647
- data/mod/06_bootstrap/lib/stylesheets/theme_lumen.css +0 -6097
- data/mod/06_bootstrap/lib/stylesheets/theme_paper.css +0 -6647
- data/mod/06_bootstrap/lib/stylesheets/theme_readable.css +0 -5896
- data/mod/06_bootstrap/lib/stylesheets/theme_sandstone.css +0 -6733
- data/mod/06_bootstrap/lib/stylesheets/theme_simplex.css +0 -5886
- data/mod/06_bootstrap/lib/stylesheets/theme_slate.css +0 -7057
- data/mod/06_bootstrap/lib/stylesheets/theme_spacelab.css +0 -5935
- data/mod/06_bootstrap/lib/stylesheets/theme_superhero.css +0 -5964
- data/mod/06_bootstrap/lib/stylesheets/theme_united.css +0 -6588
- data/mod/06_bootstrap/lib/stylesheets/theme_yeti.css +0 -6088
- data/mod/06_bootstrap/set/self/bootstrap_css.rb +0 -9
- data/mod/06_bootstrap/set/self/bootswatch_mixins.rb +0 -9
- data/mod/06_bootstrap/set/self/theme_bootstrap_default.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_cerulean.rb +0 -9
- data/mod/06_bootstrap/set/self/theme_cosmo.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_cyborg.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_darkly.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_flatly.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_journal.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_lumen.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_paper.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_readable.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_sandstone.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_simplex.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_slate.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_spacelab.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_superhero.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_united.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_yeti.rb +0 -2
- data/test/fixtures/card_changes.yml +0 -17961
- data/test/fixtures/cards.yml +0 -16218
data/db/seed/README.md
ADDED
@@ -2933,1268 +2933,1534 @@ card_actions_419:
|
|
2933
2933
|
action_type: 0
|
2934
2934
|
draft: false
|
2935
2935
|
card_actions_420:
|
2936
|
-
id: 6923
|
2937
|
-
card_id: 1060
|
2938
|
-
card_act_id: 1
|
2939
|
-
super_action_id:
|
2940
|
-
action_type: 0
|
2941
|
-
draft: false
|
2942
|
-
card_actions_421:
|
2943
2936
|
id: 6924
|
2944
2937
|
card_id: 1061
|
2945
2938
|
card_act_id: 1
|
2946
2939
|
super_action_id:
|
2947
2940
|
action_type: 0
|
2948
2941
|
draft: false
|
2949
|
-
|
2942
|
+
card_actions_421:
|
2950
2943
|
id: 6925
|
2951
2944
|
card_id: 1062
|
2952
2945
|
card_act_id: 1
|
2953
2946
|
super_action_id:
|
2954
2947
|
action_type: 0
|
2955
2948
|
draft: false
|
2956
|
-
|
2957
|
-
id: 6976
|
2958
|
-
card_id: 69
|
2959
|
-
card_act_id: 1
|
2960
|
-
super_action_id:
|
2961
|
-
action_type: 1
|
2962
|
-
draft: false
|
2963
|
-
card_actions_424:
|
2949
|
+
card_actions_422:
|
2964
2950
|
id: 7122
|
2965
2951
|
card_id: 1008
|
2966
2952
|
card_act_id: 1
|
2967
2953
|
super_action_id:
|
2968
2954
|
action_type: 1
|
2969
2955
|
draft: false
|
2970
|
-
|
2956
|
+
card_actions_423:
|
2971
2957
|
id: 7149
|
2972
2958
|
card_id: 1199
|
2973
2959
|
card_act_id: 1
|
2974
2960
|
super_action_id:
|
2975
2961
|
action_type: 0
|
2976
2962
|
draft: false
|
2977
|
-
|
2963
|
+
card_actions_424:
|
2978
2964
|
id: 7150
|
2979
2965
|
card_id: 1201
|
2980
2966
|
card_act_id: 1
|
2981
2967
|
super_action_id:
|
2982
2968
|
action_type: 0
|
2983
2969
|
draft: false
|
2984
|
-
|
2970
|
+
card_actions_425:
|
2985
2971
|
id: 7151
|
2986
2972
|
card_id: 1200
|
2987
2973
|
card_act_id: 1
|
2988
2974
|
super_action_id: 7150
|
2989
2975
|
action_type: 0
|
2990
2976
|
draft: false
|
2991
|
-
|
2977
|
+
card_actions_426:
|
2992
2978
|
id: 7152
|
2993
2979
|
card_id: 1202
|
2994
2980
|
card_act_id: 1
|
2995
2981
|
super_action_id:
|
2996
2982
|
action_type: 0
|
2997
2983
|
draft: false
|
2998
|
-
|
2984
|
+
card_actions_427:
|
2999
2985
|
id: 7153
|
3000
2986
|
card_id: 1203
|
3001
2987
|
card_act_id: 1
|
3002
2988
|
super_action_id:
|
3003
2989
|
action_type: 0
|
3004
2990
|
draft: false
|
3005
|
-
|
2991
|
+
card_actions_428:
|
3006
2992
|
id: 7154
|
3007
2993
|
card_id: 1205
|
3008
2994
|
card_act_id: 1
|
3009
2995
|
super_action_id:
|
3010
2996
|
action_type: 0
|
3011
2997
|
draft: false
|
3012
|
-
|
2998
|
+
card_actions_429:
|
3013
2999
|
id: 7155
|
3014
3000
|
card_id: 1204
|
3015
3001
|
card_act_id: 1
|
3016
3002
|
super_action_id: 7154
|
3017
3003
|
action_type: 0
|
3018
3004
|
draft: false
|
3019
|
-
|
3005
|
+
card_actions_430:
|
3020
3006
|
id: 7156
|
3021
3007
|
card_id: 1206
|
3022
3008
|
card_act_id: 1
|
3023
3009
|
super_action_id:
|
3024
3010
|
action_type: 0
|
3025
3011
|
draft: false
|
3026
|
-
|
3012
|
+
card_actions_431:
|
3027
3013
|
id: 7157
|
3028
3014
|
card_id: 1207
|
3029
3015
|
card_act_id: 1
|
3030
3016
|
super_action_id:
|
3031
3017
|
action_type: 0
|
3032
3018
|
draft: false
|
3033
|
-
|
3019
|
+
card_actions_432:
|
3034
3020
|
id: 7158
|
3035
3021
|
card_id: 1209
|
3036
3022
|
card_act_id: 1
|
3037
3023
|
super_action_id:
|
3038
3024
|
action_type: 0
|
3039
3025
|
draft: false
|
3040
|
-
|
3026
|
+
card_actions_433:
|
3041
3027
|
id: 7159
|
3042
3028
|
card_id: 1208
|
3043
3029
|
card_act_id: 1
|
3044
3030
|
super_action_id: 7158
|
3045
3031
|
action_type: 0
|
3046
3032
|
draft: false
|
3047
|
-
|
3033
|
+
card_actions_434:
|
3048
3034
|
id: 7160
|
3049
3035
|
card_id: 1210
|
3050
3036
|
card_act_id: 1
|
3051
3037
|
super_action_id:
|
3052
3038
|
action_type: 0
|
3053
3039
|
draft: false
|
3054
|
-
|
3040
|
+
card_actions_435:
|
3055
3041
|
id: 7161
|
3056
3042
|
card_id: 375
|
3057
3043
|
card_act_id: 1
|
3058
3044
|
super_action_id:
|
3059
3045
|
action_type: 1
|
3060
3046
|
draft: false
|
3061
|
-
|
3047
|
+
card_actions_436:
|
3062
3048
|
id: 7162
|
3063
3049
|
card_id: 1211
|
3064
3050
|
card_act_id: 1
|
3065
3051
|
super_action_id:
|
3066
3052
|
action_type: 0
|
3067
3053
|
draft: false
|
3068
|
-
|
3054
|
+
card_actions_437:
|
3069
3055
|
id: 7163
|
3070
3056
|
card_id: 377
|
3071
3057
|
card_act_id: 1
|
3072
3058
|
super_action_id:
|
3073
3059
|
action_type: 1
|
3074
3060
|
draft: false
|
3075
|
-
|
3061
|
+
card_actions_438:
|
3076
3062
|
id: 7164
|
3077
3063
|
card_id: 1212
|
3078
3064
|
card_act_id: 1
|
3079
3065
|
super_action_id:
|
3080
3066
|
action_type: 0
|
3081
3067
|
draft: false
|
3082
|
-
|
3068
|
+
card_actions_439:
|
3083
3069
|
id: 7165
|
3084
3070
|
card_id: 380
|
3085
3071
|
card_act_id: 1
|
3086
3072
|
super_action_id:
|
3087
3073
|
action_type: 1
|
3088
3074
|
draft: false
|
3089
|
-
|
3075
|
+
card_actions_440:
|
3090
3076
|
id: 7166
|
3091
3077
|
card_id: 1213
|
3092
3078
|
card_act_id: 1
|
3093
3079
|
super_action_id:
|
3094
3080
|
action_type: 0
|
3095
3081
|
draft: false
|
3096
|
-
|
3082
|
+
card_actions_441:
|
3097
3083
|
id: 7167
|
3098
3084
|
card_id: 383
|
3099
3085
|
card_act_id: 1
|
3100
3086
|
super_action_id:
|
3101
3087
|
action_type: 1
|
3102
3088
|
draft: false
|
3103
|
-
|
3089
|
+
card_actions_442:
|
3104
3090
|
id: 7168
|
3105
3091
|
card_id: 1214
|
3106
3092
|
card_act_id: 1
|
3107
3093
|
super_action_id:
|
3108
3094
|
action_type: 0
|
3109
3095
|
draft: false
|
3110
|
-
|
3096
|
+
card_actions_443:
|
3111
3097
|
id: 7169
|
3112
3098
|
card_id: 1215
|
3113
3099
|
card_act_id: 1
|
3114
3100
|
super_action_id:
|
3115
3101
|
action_type: 0
|
3116
3102
|
draft: false
|
3117
|
-
|
3103
|
+
card_actions_444:
|
3118
3104
|
id: 7171
|
3119
3105
|
card_id: 1216
|
3120
3106
|
card_act_id: 1
|
3121
3107
|
super_action_id: 7170
|
3122
3108
|
action_type: 0
|
3123
3109
|
draft: false
|
3124
|
-
|
3110
|
+
card_actions_445:
|
3125
3111
|
id: 7172
|
3126
3112
|
card_id: 1218
|
3127
3113
|
card_act_id: 1
|
3128
3114
|
super_action_id:
|
3129
3115
|
action_type: 0
|
3130
3116
|
draft: false
|
3131
|
-
|
3117
|
+
card_actions_446:
|
3132
3118
|
id: 7173
|
3133
3119
|
card_id: 1219
|
3134
3120
|
card_act_id: 1
|
3135
3121
|
super_action_id:
|
3136
3122
|
action_type: 0
|
3137
3123
|
draft: false
|
3138
|
-
|
3124
|
+
card_actions_447:
|
3139
3125
|
id: 7174
|
3140
3126
|
card_id: 1221
|
3141
3127
|
card_act_id: 1
|
3142
3128
|
super_action_id:
|
3143
3129
|
action_type: 0
|
3144
3130
|
draft: false
|
3145
|
-
|
3131
|
+
card_actions_448:
|
3146
3132
|
id: 7175
|
3147
3133
|
card_id: 1220
|
3148
3134
|
card_act_id: 1
|
3149
3135
|
super_action_id: 7174
|
3150
3136
|
action_type: 0
|
3151
3137
|
draft: false
|
3152
|
-
|
3138
|
+
card_actions_449:
|
3153
3139
|
id: 7176
|
3154
3140
|
card_id: 1222
|
3155
3141
|
card_act_id: 1
|
3156
3142
|
super_action_id:
|
3157
3143
|
action_type: 0
|
3158
3144
|
draft: false
|
3159
|
-
|
3145
|
+
card_actions_450:
|
3160
3146
|
id: 7177
|
3161
3147
|
card_id: 1223
|
3162
3148
|
card_act_id: 1
|
3163
3149
|
super_action_id:
|
3164
3150
|
action_type: 0
|
3165
3151
|
draft: false
|
3166
|
-
|
3152
|
+
card_actions_451:
|
3167
3153
|
id: 7178
|
3168
3154
|
card_id: 1224
|
3169
3155
|
card_act_id: 1
|
3170
3156
|
super_action_id:
|
3171
3157
|
action_type: 0
|
3172
3158
|
draft: false
|
3173
|
-
|
3159
|
+
card_actions_452:
|
3174
3160
|
id: 7179
|
3175
3161
|
card_id: 1225
|
3176
3162
|
card_act_id: 1
|
3177
3163
|
super_action_id:
|
3178
3164
|
action_type: 0
|
3179
3165
|
draft: false
|
3180
|
-
|
3166
|
+
card_actions_453:
|
3181
3167
|
id: 7180
|
3182
3168
|
card_id: 1226
|
3183
3169
|
card_act_id: 1
|
3184
3170
|
super_action_id:
|
3185
3171
|
action_type: 0
|
3186
3172
|
draft: false
|
3187
|
-
|
3173
|
+
card_actions_454:
|
3188
3174
|
id: 7181
|
3189
3175
|
card_id: 1227
|
3190
3176
|
card_act_id: 1
|
3191
3177
|
super_action_id:
|
3192
3178
|
action_type: 0
|
3193
3179
|
draft: false
|
3194
|
-
|
3180
|
+
card_actions_455:
|
3195
3181
|
id: 7182
|
3196
3182
|
card_id: 1228
|
3197
3183
|
card_act_id: 1
|
3198
3184
|
super_action_id:
|
3199
3185
|
action_type: 0
|
3200
3186
|
draft: false
|
3201
|
-
|
3187
|
+
card_actions_456:
|
3202
3188
|
id: 7183
|
3203
3189
|
card_id: 1229
|
3204
3190
|
card_act_id: 1
|
3205
3191
|
super_action_id:
|
3206
3192
|
action_type: 0
|
3207
3193
|
draft: false
|
3208
|
-
|
3194
|
+
card_actions_457:
|
3209
3195
|
id: 7184
|
3210
3196
|
card_id: 1230
|
3211
3197
|
card_act_id: 1
|
3212
3198
|
super_action_id:
|
3213
3199
|
action_type: 0
|
3214
3200
|
draft: false
|
3215
|
-
|
3201
|
+
card_actions_458:
|
3216
3202
|
id: 7185
|
3217
3203
|
card_id: 1231
|
3218
3204
|
card_act_id: 1
|
3219
3205
|
super_action_id:
|
3220
3206
|
action_type: 0
|
3221
3207
|
draft: false
|
3222
|
-
|
3208
|
+
card_actions_459:
|
3223
3209
|
id: 7186
|
3224
3210
|
card_id: 1232
|
3225
3211
|
card_act_id: 1
|
3226
3212
|
super_action_id:
|
3227
3213
|
action_type: 0
|
3228
3214
|
draft: false
|
3229
|
-
|
3215
|
+
card_actions_460:
|
3230
3216
|
id: 7187
|
3231
3217
|
card_id: 1233
|
3232
3218
|
card_act_id: 1
|
3233
3219
|
super_action_id:
|
3234
3220
|
action_type: 0
|
3235
3221
|
draft: false
|
3236
|
-
|
3222
|
+
card_actions_461:
|
3237
3223
|
id: 7188
|
3238
3224
|
card_id: 1234
|
3239
3225
|
card_act_id: 1
|
3240
3226
|
super_action_id:
|
3241
3227
|
action_type: 0
|
3242
3228
|
draft: false
|
3243
|
-
|
3229
|
+
card_actions_462:
|
3244
3230
|
id: 7190
|
3245
3231
|
card_id: 1236
|
3246
3232
|
card_act_id: 1
|
3247
3233
|
super_action_id:
|
3248
3234
|
action_type: 0
|
3249
3235
|
draft: false
|
3250
|
-
|
3236
|
+
card_actions_463:
|
3251
3237
|
id: 7191
|
3252
3238
|
card_id: 1237
|
3253
3239
|
card_act_id: 1
|
3254
3240
|
super_action_id:
|
3255
3241
|
action_type: 0
|
3256
3242
|
draft: false
|
3257
|
-
|
3243
|
+
card_actions_464:
|
3258
3244
|
id: 7192
|
3259
3245
|
card_id: 1238
|
3260
3246
|
card_act_id: 1
|
3261
3247
|
super_action_id:
|
3262
3248
|
action_type: 0
|
3263
3249
|
draft: false
|
3264
|
-
|
3250
|
+
card_actions_465:
|
3265
3251
|
id: 7195
|
3266
3252
|
card_id: 1239
|
3267
3253
|
card_act_id: 1
|
3268
3254
|
super_action_id:
|
3269
3255
|
action_type: 0
|
3270
3256
|
draft: false
|
3271
|
-
|
3257
|
+
card_actions_466:
|
3272
3258
|
id: 7196
|
3273
3259
|
card_id: 1240
|
3274
3260
|
card_act_id: 1
|
3275
3261
|
super_action_id:
|
3276
3262
|
action_type: 0
|
3277
3263
|
draft: false
|
3278
|
-
|
3264
|
+
card_actions_467:
|
3279
3265
|
id: 7197
|
3280
3266
|
card_id: 1241
|
3281
3267
|
card_act_id: 1
|
3282
3268
|
super_action_id:
|
3283
3269
|
action_type: 0
|
3284
3270
|
draft: false
|
3285
|
-
|
3271
|
+
card_actions_468:
|
3286
3272
|
id: 7204
|
3287
3273
|
card_id: 1242
|
3288
3274
|
card_act_id: 1
|
3289
3275
|
super_action_id:
|
3290
3276
|
action_type: 0
|
3291
3277
|
draft: false
|
3292
|
-
|
3278
|
+
card_actions_469:
|
3293
3279
|
id: 7205
|
3294
3280
|
card_id: 1244
|
3295
3281
|
card_act_id: 1
|
3296
3282
|
super_action_id:
|
3297
3283
|
action_type: 0
|
3298
3284
|
draft: false
|
3299
|
-
|
3285
|
+
card_actions_470:
|
3300
3286
|
id: 7206
|
3301
3287
|
card_id: 1243
|
3302
3288
|
card_act_id: 1
|
3303
3289
|
super_action_id: 7205
|
3304
3290
|
action_type: 0
|
3305
3291
|
draft: false
|
3306
|
-
|
3292
|
+
card_actions_471:
|
3307
3293
|
id: 7207
|
3308
3294
|
card_id: 1245
|
3309
3295
|
card_act_id: 1
|
3310
3296
|
super_action_id:
|
3311
3297
|
action_type: 0
|
3312
3298
|
draft: false
|
3313
|
-
|
3299
|
+
card_actions_472:
|
3314
3300
|
id: 7208
|
3315
3301
|
card_id: 1246
|
3316
3302
|
card_act_id: 1
|
3317
3303
|
super_action_id:
|
3318
3304
|
action_type: 0
|
3319
3305
|
draft: false
|
3320
|
-
|
3306
|
+
card_actions_473:
|
3321
3307
|
id: 7238
|
3322
3308
|
card_id: 1247
|
3323
3309
|
card_act_id: 1
|
3324
3310
|
super_action_id:
|
3325
3311
|
action_type: 1
|
3326
3312
|
draft: false
|
3327
|
-
|
3313
|
+
card_actions_474:
|
3328
3314
|
id: 7239
|
3329
3315
|
card_id: 212
|
3330
3316
|
card_act_id: 1
|
3331
3317
|
super_action_id:
|
3332
3318
|
action_type: 1
|
3333
3319
|
draft: false
|
3334
|
-
|
3320
|
+
card_actions_475:
|
3335
3321
|
id: 7271
|
3336
3322
|
card_id: 1217
|
3337
3323
|
card_act_id: 1
|
3338
3324
|
super_action_id:
|
3339
3325
|
action_type: 1
|
3340
3326
|
draft: false
|
3341
|
-
|
3327
|
+
card_actions_476:
|
3342
3328
|
id: 7274
|
3343
3329
|
card_id: 216
|
3344
3330
|
card_act_id: 1
|
3345
3331
|
super_action_id:
|
3346
3332
|
action_type: 1
|
3347
3333
|
draft: false
|
3348
|
-
|
3334
|
+
card_actions_477:
|
3349
3335
|
id: 7276
|
3350
3336
|
card_id: 181
|
3351
3337
|
card_act_id: 1
|
3352
3338
|
super_action_id:
|
3353
3339
|
action_type: 1
|
3354
3340
|
draft: false
|
3355
|
-
|
3341
|
+
card_actions_478:
|
3356
3342
|
id: 7279
|
3357
3343
|
card_id: 100
|
3358
3344
|
card_act_id: 1
|
3359
3345
|
super_action_id:
|
3360
3346
|
action_type: 1
|
3361
3347
|
draft: false
|
3362
|
-
|
3348
|
+
card_actions_479:
|
3363
3349
|
id: 7283
|
3364
3350
|
card_id: 1248
|
3365
3351
|
card_act_id: 1
|
3366
3352
|
super_action_id:
|
3367
3353
|
action_type: 1
|
3368
3354
|
draft: false
|
3369
|
-
|
3355
|
+
card_actions_480:
|
3370
3356
|
id: 7285
|
3371
3357
|
card_id: 1249
|
3372
3358
|
card_act_id: 1
|
3373
3359
|
super_action_id:
|
3374
3360
|
action_type: 0
|
3375
3361
|
draft: false
|
3376
|
-
|
3362
|
+
card_actions_481:
|
3377
3363
|
id: 7286
|
3378
3364
|
card_id: 1250
|
3379
3365
|
card_act_id: 1
|
3380
3366
|
super_action_id:
|
3381
3367
|
action_type: 0
|
3382
3368
|
draft: false
|
3383
|
-
|
3369
|
+
card_actions_482:
|
3384
3370
|
id: 7287
|
3385
3371
|
card_id: 1251
|
3386
3372
|
card_act_id: 1
|
3387
3373
|
super_action_id:
|
3388
3374
|
action_type: 0
|
3389
3375
|
draft: false
|
3390
|
-
|
3376
|
+
card_actions_483:
|
3391
3377
|
id: 7288
|
3392
3378
|
card_id: 1252
|
3393
3379
|
card_act_id: 1
|
3394
3380
|
super_action_id:
|
3395
3381
|
action_type: 0
|
3396
3382
|
draft: false
|
3397
|
-
|
3383
|
+
card_actions_484:
|
3398
3384
|
id: 7289
|
3399
3385
|
card_id: 1253
|
3400
3386
|
card_act_id: 1
|
3401
3387
|
super_action_id:
|
3402
3388
|
action_type: 0
|
3403
3389
|
draft: false
|
3404
|
-
|
3390
|
+
card_actions_485:
|
3405
3391
|
id: 7295
|
3406
3392
|
card_id: 1254
|
3407
3393
|
card_act_id: 1
|
3408
3394
|
super_action_id:
|
3409
3395
|
action_type: 0
|
3410
3396
|
draft: false
|
3411
|
-
|
3397
|
+
card_actions_486:
|
3412
3398
|
id: 7310
|
3413
3399
|
card_id: 1235
|
3414
3400
|
card_act_id: 1
|
3415
3401
|
super_action_id:
|
3416
3402
|
action_type: 1
|
3417
3403
|
draft: false
|
3418
|
-
|
3404
|
+
card_actions_487:
|
3419
3405
|
id: 7320
|
3420
3406
|
card_id: 1257
|
3421
3407
|
card_act_id: 1
|
3422
3408
|
super_action_id:
|
3423
3409
|
action_type: 0
|
3424
3410
|
draft: false
|
3425
|
-
|
3411
|
+
card_actions_488:
|
3426
3412
|
id: 7324
|
3427
3413
|
card_id: 1259
|
3428
3414
|
card_act_id: 1
|
3429
3415
|
super_action_id:
|
3430
3416
|
action_type: 0
|
3431
3417
|
draft: false
|
3432
|
-
|
3418
|
+
card_actions_489:
|
3433
3419
|
id: 7339
|
3434
3420
|
card_id: 1261
|
3435
3421
|
card_act_id: 1
|
3436
3422
|
super_action_id:
|
3437
3423
|
action_type: 0
|
3438
3424
|
draft: false
|
3439
|
-
|
3425
|
+
card_actions_490:
|
3440
3426
|
id: 7340
|
3441
3427
|
card_id: 1263
|
3442
3428
|
card_act_id: 1
|
3443
3429
|
super_action_id:
|
3444
3430
|
action_type: 0
|
3445
3431
|
draft: false
|
3446
|
-
|
3432
|
+
card_actions_491:
|
3447
3433
|
id: 7341
|
3448
3434
|
card_id: 1262
|
3449
3435
|
card_act_id: 1
|
3450
3436
|
super_action_id: 7340
|
3451
3437
|
action_type: 0
|
3452
3438
|
draft: false
|
3453
|
-
|
3439
|
+
card_actions_492:
|
3454
3440
|
id: 7342
|
3455
3441
|
card_id: 1264
|
3456
3442
|
card_act_id: 1
|
3457
3443
|
super_action_id:
|
3458
3444
|
action_type: 0
|
3459
3445
|
draft: false
|
3460
|
-
|
3446
|
+
card_actions_493:
|
3461
3447
|
id: 7343
|
3462
3448
|
card_id: 1265
|
3463
3449
|
card_act_id: 1
|
3464
3450
|
super_action_id:
|
3465
3451
|
action_type: 0
|
3466
3452
|
draft: false
|
3467
|
-
|
3453
|
+
card_actions_494:
|
3468
3454
|
id: 7344
|
3469
3455
|
card_id: 1266
|
3470
3456
|
card_act_id: 1
|
3471
3457
|
super_action_id:
|
3472
3458
|
action_type: 0
|
3473
3459
|
draft: false
|
3474
|
-
|
3460
|
+
card_actions_495:
|
3475
3461
|
id: 7345
|
3476
3462
|
card_id: 1267
|
3477
3463
|
card_act_id: 1
|
3478
3464
|
super_action_id:
|
3479
3465
|
action_type: 0
|
3480
3466
|
draft: false
|
3481
|
-
|
3467
|
+
card_actions_496:
|
3482
3468
|
id: 7346
|
3483
3469
|
card_id: 1269
|
3484
3470
|
card_act_id: 1
|
3485
3471
|
super_action_id:
|
3486
3472
|
action_type: 0
|
3487
3473
|
draft: false
|
3488
|
-
|
3474
|
+
card_actions_497:
|
3489
3475
|
id: 7347
|
3490
3476
|
card_id: 1268
|
3491
3477
|
card_act_id: 1
|
3492
3478
|
super_action_id: 7346
|
3493
3479
|
action_type: 0
|
3494
3480
|
draft: false
|
3495
|
-
|
3481
|
+
card_actions_498:
|
3496
3482
|
id: 7348
|
3497
3483
|
card_id: 1270
|
3498
3484
|
card_act_id: 1
|
3499
3485
|
super_action_id:
|
3500
3486
|
action_type: 0
|
3501
3487
|
draft: false
|
3502
|
-
|
3488
|
+
card_actions_499:
|
3503
3489
|
id: 7349
|
3504
3490
|
card_id: 1271
|
3505
3491
|
card_act_id: 1
|
3506
3492
|
super_action_id:
|
3507
3493
|
action_type: 0
|
3508
3494
|
draft: false
|
3509
|
-
|
3495
|
+
card_actions_500:
|
3510
3496
|
id: 7350
|
3511
3497
|
card_id: 1272
|
3512
3498
|
card_act_id: 1
|
3513
3499
|
super_action_id:
|
3514
3500
|
action_type: 0
|
3515
3501
|
draft: false
|
3516
|
-
|
3502
|
+
card_actions_501:
|
3517
3503
|
id: 7351
|
3518
3504
|
card_id: 1273
|
3519
3505
|
card_act_id: 1
|
3520
3506
|
super_action_id:
|
3521
3507
|
action_type: 0
|
3522
3508
|
draft: false
|
3523
|
-
|
3509
|
+
card_actions_502:
|
3524
3510
|
id: 7352
|
3525
3511
|
card_id: 1274
|
3526
3512
|
card_act_id: 1
|
3527
3513
|
super_action_id:
|
3528
3514
|
action_type: 0
|
3529
3515
|
draft: false
|
3530
|
-
|
3516
|
+
card_actions_503:
|
3531
3517
|
id: 7353
|
3532
3518
|
card_id: 1276
|
3533
3519
|
card_act_id: 1
|
3534
3520
|
super_action_id:
|
3535
3521
|
action_type: 0
|
3536
3522
|
draft: false
|
3537
|
-
|
3523
|
+
card_actions_504:
|
3538
3524
|
id: 7354
|
3539
3525
|
card_id: 1275
|
3540
3526
|
card_act_id: 1
|
3541
3527
|
super_action_id: 7353
|
3542
3528
|
action_type: 0
|
3543
3529
|
draft: false
|
3544
|
-
|
3530
|
+
card_actions_505:
|
3545
3531
|
id: 7356
|
3546
3532
|
card_id: 83
|
3547
3533
|
card_act_id: 1
|
3548
3534
|
super_action_id:
|
3549
3535
|
action_type: 1
|
3550
3536
|
draft: false
|
3551
|
-
|
3537
|
+
card_actions_506:
|
3552
3538
|
id: 7361
|
3553
3539
|
card_id: 1277
|
3554
3540
|
card_act_id: 1
|
3555
3541
|
super_action_id:
|
3556
3542
|
action_type: 0
|
3557
3543
|
draft: false
|
3558
|
-
|
3559
|
-
id: 7367
|
3560
|
-
card_id: 1279
|
3561
|
-
card_act_id: 1
|
3562
|
-
super_action_id:
|
3563
|
-
action_type: 0
|
3564
|
-
draft: false
|
3565
|
-
card_actions_510:
|
3544
|
+
card_actions_507:
|
3566
3545
|
id: 7375
|
3567
3546
|
card_id: 965
|
3568
3547
|
card_act_id: 1
|
3569
3548
|
super_action_id:
|
3570
3549
|
action_type: 1
|
3571
3550
|
draft: false
|
3572
|
-
|
3551
|
+
card_actions_508:
|
3573
3552
|
id: 7393
|
3574
3553
|
card_id: 1284
|
3575
3554
|
card_act_id: 1
|
3576
3555
|
super_action_id:
|
3577
3556
|
action_type: 0
|
3578
3557
|
draft: false
|
3579
|
-
|
3558
|
+
card_actions_509:
|
3580
3559
|
id: 7400
|
3581
3560
|
card_id: 1063
|
3582
3561
|
card_act_id: 1
|
3583
3562
|
super_action_id:
|
3584
3563
|
action_type: 1
|
3585
3564
|
draft: false
|
3586
|
-
|
3565
|
+
card_actions_510:
|
3587
3566
|
id: 7403
|
3588
3567
|
card_id: 1287
|
3589
3568
|
card_act_id: 1
|
3590
3569
|
super_action_id:
|
3591
3570
|
action_type: 0
|
3592
3571
|
draft: false
|
3593
|
-
|
3572
|
+
card_actions_511:
|
3594
3573
|
id: 7404
|
3595
3574
|
card_id: 1288
|
3596
3575
|
card_act_id: 1
|
3597
3576
|
super_action_id:
|
3598
3577
|
action_type: 0
|
3599
3578
|
draft: false
|
3600
|
-
|
3579
|
+
card_actions_512:
|
3601
3580
|
id: 7405
|
3602
3581
|
card_id: 963
|
3603
3582
|
card_act_id: 1
|
3604
3583
|
super_action_id:
|
3605
3584
|
action_type: 1
|
3606
3585
|
draft: false
|
3607
|
-
|
3586
|
+
card_actions_513:
|
3608
3587
|
id: 7412
|
3609
3588
|
card_id: 1290
|
3610
3589
|
card_act_id: 1
|
3611
3590
|
super_action_id:
|
3612
3591
|
action_type: 0
|
3613
3592
|
draft: false
|
3614
|
-
|
3593
|
+
card_actions_514:
|
3615
3594
|
id: 7413
|
3616
3595
|
card_id: 1291
|
3617
3596
|
card_act_id: 1
|
3618
3597
|
super_action_id:
|
3619
3598
|
action_type: 0
|
3620
3599
|
draft: false
|
3621
|
-
|
3600
|
+
card_actions_515:
|
3622
3601
|
id: 7415
|
3623
3602
|
card_id: 1293
|
3624
3603
|
card_act_id: 1
|
3625
3604
|
super_action_id:
|
3626
3605
|
action_type: 0
|
3627
3606
|
draft: false
|
3628
|
-
|
3607
|
+
card_actions_516:
|
3629
3608
|
id: 7416
|
3630
3609
|
card_id: 1292
|
3631
3610
|
card_act_id: 1
|
3632
3611
|
super_action_id: 7415
|
3633
3612
|
action_type: 0
|
3634
3613
|
draft: false
|
3635
|
-
|
3614
|
+
card_actions_517:
|
3636
3615
|
id: 7417
|
3637
3616
|
card_id: 961
|
3638
3617
|
card_act_id: 1
|
3639
3618
|
super_action_id:
|
3640
3619
|
action_type: 1
|
3641
3620
|
draft: false
|
3642
|
-
|
3621
|
+
card_actions_518:
|
3643
3622
|
id: 7424
|
3644
3623
|
card_id: 1295
|
3645
3624
|
card_act_id: 1
|
3646
3625
|
super_action_id:
|
3647
3626
|
action_type: 0
|
3648
3627
|
draft: false
|
3649
|
-
|
3650
|
-
id: 7429
|
3651
|
-
card_id: 1297
|
3652
|
-
card_act_id: 1
|
3653
|
-
super_action_id:
|
3654
|
-
action_type: 0
|
3655
|
-
draft: false
|
3656
|
-
card_actions_523:
|
3628
|
+
card_actions_519:
|
3657
3629
|
id: 7432
|
3658
3630
|
card_id: 1299
|
3659
3631
|
card_act_id: 1
|
3660
3632
|
super_action_id:
|
3661
3633
|
action_type: 0
|
3662
3634
|
draft: false
|
3663
|
-
|
3635
|
+
card_actions_520:
|
3664
3636
|
id: 7435
|
3665
3637
|
card_id: 1301
|
3666
3638
|
card_act_id: 1
|
3667
3639
|
super_action_id:
|
3668
3640
|
action_type: 0
|
3669
3641
|
draft: false
|
3670
|
-
|
3642
|
+
card_actions_521:
|
3671
3643
|
id: 7441
|
3672
3644
|
card_id: 1303
|
3673
3645
|
card_act_id: 1
|
3674
3646
|
super_action_id:
|
3675
3647
|
action_type: 0
|
3676
3648
|
draft: false
|
3677
|
-
|
3649
|
+
card_actions_522:
|
3678
3650
|
id: 7442
|
3679
3651
|
card_id: 1304
|
3680
3652
|
card_act_id: 1
|
3681
3653
|
super_action_id:
|
3682
3654
|
action_type: 0
|
3683
3655
|
draft: false
|
3684
|
-
|
3656
|
+
card_actions_523:
|
3685
3657
|
id: 7443
|
3686
3658
|
card_id: 1306
|
3687
3659
|
card_act_id: 1
|
3688
3660
|
super_action_id:
|
3689
3661
|
action_type: 0
|
3690
3662
|
draft: false
|
3691
|
-
|
3663
|
+
card_actions_524:
|
3692
3664
|
id: 7444
|
3693
3665
|
card_id: 1305
|
3694
3666
|
card_act_id: 1
|
3695
3667
|
super_action_id: 7443
|
3696
3668
|
action_type: 0
|
3697
3669
|
draft: false
|
3698
|
-
|
3670
|
+
card_actions_525:
|
3699
3671
|
id: 7446
|
3700
3672
|
card_id: 1286
|
3701
3673
|
card_act_id: 1
|
3702
3674
|
super_action_id:
|
3703
3675
|
action_type: 1
|
3704
3676
|
draft: false
|
3705
|
-
|
3677
|
+
card_actions_526:
|
3706
3678
|
id: 7450
|
3707
3679
|
card_id: 273
|
3708
3680
|
card_act_id: 1
|
3709
3681
|
super_action_id: 7449
|
3710
3682
|
action_type: 0
|
3711
3683
|
draft: false
|
3712
|
-
|
3684
|
+
card_actions_527:
|
3713
3685
|
id: 7455
|
3714
3686
|
card_id: 1312
|
3715
3687
|
card_act_id: 1
|
3716
3688
|
super_action_id: 7454
|
3717
3689
|
action_type: 0
|
3718
3690
|
draft: false
|
3719
|
-
|
3691
|
+
card_actions_528:
|
3720
3692
|
id: 7458
|
3721
3693
|
card_id: 1315
|
3722
3694
|
card_act_id: 1
|
3723
3695
|
super_action_id: 7457
|
3724
3696
|
action_type: 0
|
3725
3697
|
draft: false
|
3726
|
-
|
3698
|
+
card_actions_529:
|
3727
3699
|
id: 7461
|
3728
3700
|
card_id: 1318
|
3729
3701
|
card_act_id: 1
|
3730
3702
|
super_action_id: 7460
|
3731
3703
|
action_type: 0
|
3732
3704
|
draft: false
|
3733
|
-
|
3705
|
+
card_actions_530:
|
3734
3706
|
id: 7464
|
3735
3707
|
card_id: 1321
|
3736
3708
|
card_act_id: 1
|
3737
3709
|
super_action_id: 7463
|
3738
3710
|
action_type: 0
|
3739
3711
|
draft: false
|
3740
|
-
|
3712
|
+
card_actions_531:
|
3741
3713
|
id: 7467
|
3742
3714
|
card_id: 1324
|
3743
3715
|
card_act_id: 1
|
3744
3716
|
super_action_id: 7466
|
3745
3717
|
action_type: 0
|
3746
3718
|
draft: false
|
3747
|
-
|
3719
|
+
card_actions_532:
|
3748
3720
|
id: 7476
|
3749
3721
|
card_id: 1333
|
3750
3722
|
card_act_id: 1
|
3751
3723
|
super_action_id: 7475
|
3752
3724
|
action_type: 0
|
3753
3725
|
draft: false
|
3754
|
-
|
3726
|
+
card_actions_533:
|
3755
3727
|
id: 7479
|
3756
3728
|
card_id: 1336
|
3757
3729
|
card_act_id: 1
|
3758
3730
|
super_action_id: 7478
|
3759
3731
|
action_type: 0
|
3760
3732
|
draft: false
|
3761
|
-
|
3733
|
+
card_actions_534:
|
3762
3734
|
id: 7482
|
3763
3735
|
card_id: 1339
|
3764
3736
|
card_act_id: 1
|
3765
3737
|
super_action_id: 7481
|
3766
3738
|
action_type: 0
|
3767
3739
|
draft: false
|
3768
|
-
|
3740
|
+
card_actions_535:
|
3769
3741
|
id: 7487
|
3770
3742
|
card_id: 1344
|
3771
3743
|
card_act_id: 1
|
3772
3744
|
super_action_id: 7486
|
3773
3745
|
action_type: 0
|
3774
3746
|
draft: false
|
3775
|
-
|
3776
|
-
id:
|
3777
|
-
card_id:
|
3778
|
-
card_act_id: 1
|
3747
|
+
card_actions_536:
|
3748
|
+
id: 7492
|
3749
|
+
card_id: 1349
|
3750
|
+
card_act_id: 1
|
3751
|
+
super_action_id:
|
3752
|
+
action_type: 0
|
3753
|
+
draft: false
|
3754
|
+
card_actions_537:
|
3755
|
+
id: 7497
|
3756
|
+
card_id: 1353
|
3757
|
+
card_act_id: 1
|
3758
|
+
super_action_id:
|
3759
|
+
action_type: 0
|
3760
|
+
draft: false
|
3761
|
+
card_actions_538:
|
3762
|
+
id: 7502
|
3763
|
+
card_id: 1357
|
3764
|
+
card_act_id: 1
|
3765
|
+
super_action_id:
|
3766
|
+
action_type: 0
|
3767
|
+
draft: false
|
3768
|
+
card_actions_539:
|
3769
|
+
id: 7507
|
3770
|
+
card_id: 1361
|
3771
|
+
card_act_id: 1
|
3772
|
+
super_action_id:
|
3773
|
+
action_type: 0
|
3774
|
+
draft: false
|
3775
|
+
card_actions_540:
|
3776
|
+
id: 7512
|
3777
|
+
card_id: 1365
|
3778
|
+
card_act_id: 1
|
3779
3779
|
super_action_id:
|
3780
3780
|
action_type: 0
|
3781
3781
|
draft: false
|
3782
3782
|
card_actions_541:
|
3783
|
-
id:
|
3784
|
-
card_id:
|
3783
|
+
id: 7517
|
3784
|
+
card_id: 1369
|
3785
3785
|
card_act_id: 1
|
3786
3786
|
super_action_id:
|
3787
3787
|
action_type: 0
|
3788
3788
|
draft: false
|
3789
3789
|
card_actions_542:
|
3790
|
-
id:
|
3791
|
-
card_id:
|
3790
|
+
id: 7522
|
3791
|
+
card_id: 1373
|
3792
3792
|
card_act_id: 1
|
3793
3793
|
super_action_id:
|
3794
3794
|
action_type: 0
|
3795
3795
|
draft: false
|
3796
3796
|
card_actions_543:
|
3797
|
-
id:
|
3798
|
-
card_id:
|
3797
|
+
id: 7527
|
3798
|
+
card_id: 1377
|
3799
3799
|
card_act_id: 1
|
3800
3800
|
super_action_id:
|
3801
3801
|
action_type: 0
|
3802
3802
|
draft: false
|
3803
3803
|
card_actions_544:
|
3804
|
-
id:
|
3805
|
-
card_id:
|
3804
|
+
id: 7532
|
3805
|
+
card_id: 1381
|
3806
3806
|
card_act_id: 1
|
3807
3807
|
super_action_id:
|
3808
3808
|
action_type: 0
|
3809
3809
|
draft: false
|
3810
3810
|
card_actions_545:
|
3811
|
-
id:
|
3812
|
-
card_id:
|
3811
|
+
id: 7537
|
3812
|
+
card_id: 1385
|
3813
3813
|
card_act_id: 1
|
3814
3814
|
super_action_id:
|
3815
3815
|
action_type: 0
|
3816
3816
|
draft: false
|
3817
3817
|
card_actions_546:
|
3818
|
-
id:
|
3819
|
-
card_id:
|
3818
|
+
id: 7542
|
3819
|
+
card_id: 1389
|
3820
3820
|
card_act_id: 1
|
3821
3821
|
super_action_id:
|
3822
3822
|
action_type: 0
|
3823
3823
|
draft: false
|
3824
3824
|
card_actions_547:
|
3825
|
-
id:
|
3826
|
-
card_id:
|
3825
|
+
id: 7547
|
3826
|
+
card_id: 1393
|
3827
3827
|
card_act_id: 1
|
3828
3828
|
super_action_id:
|
3829
3829
|
action_type: 0
|
3830
3830
|
draft: false
|
3831
3831
|
card_actions_548:
|
3832
|
-
id:
|
3833
|
-
card_id:
|
3832
|
+
id: 7552
|
3833
|
+
card_id: 1397
|
3834
3834
|
card_act_id: 1
|
3835
3835
|
super_action_id:
|
3836
3836
|
action_type: 0
|
3837
3837
|
draft: false
|
3838
3838
|
card_actions_549:
|
3839
|
-
id:
|
3840
|
-
card_id:
|
3839
|
+
id: 7557
|
3840
|
+
card_id: 1401
|
3841
3841
|
card_act_id: 1
|
3842
3842
|
super_action_id:
|
3843
3843
|
action_type: 0
|
3844
3844
|
draft: false
|
3845
3845
|
card_actions_550:
|
3846
|
-
id:
|
3847
|
-
card_id:
|
3846
|
+
id: 7562
|
3847
|
+
card_id: 1405
|
3848
3848
|
card_act_id: 1
|
3849
3849
|
super_action_id:
|
3850
3850
|
action_type: 0
|
3851
3851
|
draft: false
|
3852
3852
|
card_actions_551:
|
3853
|
-
id:
|
3854
|
-
card_id:
|
3853
|
+
id: 7567
|
3854
|
+
card_id: 1409
|
3855
3855
|
card_act_id: 1
|
3856
3856
|
super_action_id:
|
3857
3857
|
action_type: 0
|
3858
3858
|
draft: false
|
3859
3859
|
card_actions_552:
|
3860
|
-
id:
|
3861
|
-
card_id:
|
3860
|
+
id: 7573
|
3861
|
+
card_id: 957
|
3862
3862
|
card_act_id: 1
|
3863
3863
|
super_action_id:
|
3864
|
-
action_type:
|
3864
|
+
action_type: 1
|
3865
3865
|
draft: false
|
3866
3866
|
card_actions_553:
|
3867
|
-
id:
|
3868
|
-
card_id:
|
3867
|
+
id: 7574
|
3868
|
+
card_id: 958
|
3869
3869
|
card_act_id: 1
|
3870
3870
|
super_action_id:
|
3871
|
-
action_type:
|
3871
|
+
action_type: 1
|
3872
3872
|
draft: false
|
3873
3873
|
card_actions_554:
|
3874
|
-
id:
|
3875
|
-
card_id:
|
3874
|
+
id: 7576
|
3875
|
+
card_id: 1413
|
3876
3876
|
card_act_id: 1
|
3877
3877
|
super_action_id:
|
3878
3878
|
action_type: 0
|
3879
3879
|
draft: false
|
3880
3880
|
card_actions_555:
|
3881
|
-
id:
|
3882
|
-
card_id:
|
3881
|
+
id: 7577
|
3882
|
+
card_id: 1414
|
3883
3883
|
card_act_id: 1
|
3884
3884
|
super_action_id:
|
3885
3885
|
action_type: 0
|
3886
3886
|
draft: false
|
3887
3887
|
card_actions_556:
|
3888
|
-
id:
|
3889
|
-
card_id:
|
3888
|
+
id: 7578
|
3889
|
+
card_id: 1415
|
3890
3890
|
card_act_id: 1
|
3891
3891
|
super_action_id:
|
3892
3892
|
action_type: 0
|
3893
3893
|
draft: false
|
3894
3894
|
card_actions_557:
|
3895
|
-
id:
|
3896
|
-
card_id:
|
3895
|
+
id: 7579
|
3896
|
+
card_id: 1416
|
3897
3897
|
card_act_id: 1
|
3898
3898
|
super_action_id:
|
3899
3899
|
action_type: 0
|
3900
3900
|
draft: false
|
3901
3901
|
card_actions_558:
|
3902
|
-
id:
|
3903
|
-
card_id:
|
3902
|
+
id: 7580
|
3903
|
+
card_id: 1417
|
3904
3904
|
card_act_id: 1
|
3905
3905
|
super_action_id:
|
3906
3906
|
action_type: 0
|
3907
3907
|
draft: false
|
3908
3908
|
card_actions_559:
|
3909
|
-
id:
|
3910
|
-
card_id:
|
3909
|
+
id: 7581
|
3910
|
+
card_id: 1418
|
3911
3911
|
card_act_id: 1
|
3912
3912
|
super_action_id:
|
3913
3913
|
action_type: 0
|
3914
3914
|
draft: false
|
3915
3915
|
card_actions_560:
|
3916
|
-
id:
|
3917
|
-
card_id:
|
3916
|
+
id: 7582
|
3917
|
+
card_id: 1419
|
3918
3918
|
card_act_id: 1
|
3919
3919
|
super_action_id:
|
3920
3920
|
action_type: 0
|
3921
3921
|
draft: false
|
3922
3922
|
card_actions_561:
|
3923
|
-
id:
|
3924
|
-
card_id:
|
3923
|
+
id: 7583
|
3924
|
+
card_id: 1420
|
3925
3925
|
card_act_id: 1
|
3926
3926
|
super_action_id:
|
3927
3927
|
action_type: 0
|
3928
3928
|
draft: false
|
3929
3929
|
card_actions_562:
|
3930
|
-
id:
|
3931
|
-
card_id:
|
3930
|
+
id: 7584
|
3931
|
+
card_id: 1421
|
3932
3932
|
card_act_id: 1
|
3933
3933
|
super_action_id:
|
3934
3934
|
action_type: 0
|
3935
3935
|
draft: false
|
3936
3936
|
card_actions_563:
|
3937
|
-
id:
|
3938
|
-
card_id:
|
3937
|
+
id: 7585
|
3938
|
+
card_id: 1422
|
3939
3939
|
card_act_id: 1
|
3940
3940
|
super_action_id:
|
3941
3941
|
action_type: 0
|
3942
3942
|
draft: false
|
3943
3943
|
card_actions_564:
|
3944
|
-
id:
|
3945
|
-
card_id:
|
3944
|
+
id: 7586
|
3945
|
+
card_id: 1423
|
3946
3946
|
card_act_id: 1
|
3947
3947
|
super_action_id:
|
3948
3948
|
action_type: 0
|
3949
3949
|
draft: false
|
3950
3950
|
card_actions_565:
|
3951
|
-
id:
|
3952
|
-
card_id:
|
3951
|
+
id: 7587
|
3952
|
+
card_id: 1424
|
3953
3953
|
card_act_id: 1
|
3954
3954
|
super_action_id:
|
3955
3955
|
action_type: 0
|
3956
3956
|
draft: false
|
3957
3957
|
card_actions_566:
|
3958
|
-
id:
|
3959
|
-
card_id:
|
3958
|
+
id: 7588
|
3959
|
+
card_id: 1425
|
3960
3960
|
card_act_id: 1
|
3961
3961
|
super_action_id:
|
3962
3962
|
action_type: 0
|
3963
3963
|
draft: false
|
3964
3964
|
card_actions_567:
|
3965
|
-
id:
|
3966
|
-
card_id:
|
3965
|
+
id: 7589
|
3966
|
+
card_id: 1426
|
3967
3967
|
card_act_id: 1
|
3968
3968
|
super_action_id:
|
3969
3969
|
action_type: 0
|
3970
3970
|
draft: false
|
3971
3971
|
card_actions_568:
|
3972
|
-
id:
|
3973
|
-
card_id:
|
3972
|
+
id: 7590
|
3973
|
+
card_id: 1427
|
3974
3974
|
card_act_id: 1
|
3975
3975
|
super_action_id:
|
3976
3976
|
action_type: 0
|
3977
3977
|
draft: false
|
3978
3978
|
card_actions_569:
|
3979
|
-
id:
|
3980
|
-
card_id:
|
3979
|
+
id: 7591
|
3980
|
+
card_id: 1428
|
3981
3981
|
card_act_id: 1
|
3982
3982
|
super_action_id:
|
3983
3983
|
action_type: 0
|
3984
3984
|
draft: false
|
3985
3985
|
card_actions_570:
|
3986
|
-
id:
|
3987
|
-
card_id:
|
3986
|
+
id: 7592
|
3987
|
+
card_id: 81
|
3988
3988
|
card_act_id: 1
|
3989
3989
|
super_action_id:
|
3990
|
-
action_type:
|
3990
|
+
action_type: 1
|
3991
3991
|
draft: false
|
3992
3992
|
card_actions_571:
|
3993
|
-
id:
|
3994
|
-
card_id:
|
3993
|
+
id: 7597
|
3994
|
+
card_id: 275
|
3995
3995
|
card_act_id: 1
|
3996
3996
|
super_action_id:
|
3997
|
-
action_type:
|
3997
|
+
action_type: 1
|
3998
3998
|
draft: false
|
3999
3999
|
card_actions_572:
|
4000
|
-
id:
|
4001
|
-
card_id:
|
4000
|
+
id: 7598
|
4001
|
+
card_id: 969
|
4002
4002
|
card_act_id: 1
|
4003
4003
|
super_action_id:
|
4004
|
-
action_type:
|
4004
|
+
action_type: 1
|
4005
4005
|
draft: false
|
4006
4006
|
card_actions_573:
|
4007
|
-
id:
|
4008
|
-
card_id:
|
4007
|
+
id: 7624
|
4008
|
+
card_id: 1307
|
4009
4009
|
card_act_id: 1
|
4010
4010
|
super_action_id:
|
4011
4011
|
action_type: 1
|
4012
4012
|
draft: false
|
4013
4013
|
card_actions_574:
|
4014
|
-
id:
|
4015
|
-
card_id:
|
4014
|
+
id: 7626
|
4015
|
+
card_id: 789
|
4016
4016
|
card_act_id: 1
|
4017
4017
|
super_action_id:
|
4018
4018
|
action_type: 1
|
4019
4019
|
draft: false
|
4020
4020
|
card_actions_575:
|
4021
|
-
id:
|
4022
|
-
card_id:
|
4021
|
+
id: 7628
|
4022
|
+
card_id: 73
|
4023
4023
|
card_act_id: 1
|
4024
4024
|
super_action_id:
|
4025
|
-
action_type:
|
4025
|
+
action_type: 1
|
4026
4026
|
draft: false
|
4027
4027
|
card_actions_576:
|
4028
|
-
id:
|
4029
|
-
card_id:
|
4028
|
+
id: 7629
|
4029
|
+
card_id: 453
|
4030
4030
|
card_act_id: 1
|
4031
4031
|
super_action_id:
|
4032
|
-
action_type:
|
4032
|
+
action_type: 1
|
4033
4033
|
draft: false
|
4034
4034
|
card_actions_577:
|
4035
|
-
id:
|
4036
|
-
card_id:
|
4035
|
+
id: 7630
|
4036
|
+
card_id: 88
|
4037
4037
|
card_act_id: 1
|
4038
4038
|
super_action_id:
|
4039
|
-
action_type:
|
4039
|
+
action_type: 1
|
4040
4040
|
draft: false
|
4041
4041
|
card_actions_578:
|
4042
|
-
id:
|
4043
|
-
card_id:
|
4042
|
+
id: 7632
|
4043
|
+
card_id: 80
|
4044
4044
|
card_act_id: 1
|
4045
4045
|
super_action_id:
|
4046
|
-
action_type:
|
4046
|
+
action_type: 1
|
4047
4047
|
draft: false
|
4048
4048
|
card_actions_579:
|
4049
|
-
id:
|
4050
|
-
card_id:
|
4049
|
+
id: 7665
|
4050
|
+
card_id: 103
|
4051
4051
|
card_act_id: 1
|
4052
4052
|
super_action_id:
|
4053
|
-
action_type:
|
4053
|
+
action_type: 1
|
4054
4054
|
draft: false
|
4055
4055
|
card_actions_580:
|
4056
|
-
id:
|
4057
|
-
card_id:
|
4056
|
+
id: 7669
|
4057
|
+
card_id: 1347
|
4058
4058
|
card_act_id: 1
|
4059
4059
|
super_action_id:
|
4060
|
-
action_type:
|
4060
|
+
action_type: 1
|
4061
4061
|
draft: false
|
4062
4062
|
card_actions_581:
|
4063
|
-
id:
|
4064
|
-
card_id:
|
4063
|
+
id: 7697
|
4064
|
+
card_id: 1432
|
4065
4065
|
card_act_id: 1
|
4066
4066
|
super_action_id:
|
4067
4067
|
action_type: 0
|
4068
4068
|
draft: false
|
4069
4069
|
card_actions_582:
|
4070
|
-
id:
|
4071
|
-
card_id:
|
4070
|
+
id: 7700
|
4071
|
+
card_id: 1436
|
4072
4072
|
card_act_id: 1
|
4073
4073
|
super_action_id:
|
4074
4074
|
action_type: 0
|
4075
4075
|
draft: false
|
4076
4076
|
card_actions_583:
|
4077
|
-
id:
|
4078
|
-
card_id:
|
4077
|
+
id: 7701
|
4078
|
+
card_id: 1435
|
4079
4079
|
card_act_id: 1
|
4080
|
-
super_action_id:
|
4080
|
+
super_action_id: 7700
|
4081
4081
|
action_type: 0
|
4082
4082
|
draft: false
|
4083
4083
|
card_actions_584:
|
4084
|
-
id:
|
4085
|
-
card_id:
|
4084
|
+
id: 7702
|
4085
|
+
card_id: 1434
|
4086
4086
|
card_act_id: 1
|
4087
|
-
super_action_id:
|
4087
|
+
super_action_id: 7701
|
4088
4088
|
action_type: 0
|
4089
4089
|
draft: false
|
4090
4090
|
card_actions_585:
|
4091
|
-
id:
|
4092
|
-
card_id:
|
4091
|
+
id: 7705
|
4092
|
+
card_id: 1279
|
4093
4093
|
card_act_id: 1
|
4094
4094
|
super_action_id:
|
4095
|
-
action_type:
|
4095
|
+
action_type: 1
|
4096
4096
|
draft: false
|
4097
4097
|
card_actions_586:
|
4098
|
-
id:
|
4099
|
-
card_id:
|
4098
|
+
id: 7706
|
4099
|
+
card_id: 1439
|
4100
4100
|
card_act_id: 1
|
4101
|
-
super_action_id:
|
4101
|
+
super_action_id: 7705
|
4102
4102
|
action_type: 0
|
4103
4103
|
draft: false
|
4104
4104
|
card_actions_587:
|
4105
|
-
id:
|
4106
|
-
card_id:
|
4105
|
+
id: 7707
|
4106
|
+
card_id: 1438
|
4107
4107
|
card_act_id: 1
|
4108
|
-
super_action_id:
|
4108
|
+
super_action_id: 7706
|
4109
4109
|
action_type: 0
|
4110
4110
|
draft: false
|
4111
4111
|
card_actions_588:
|
4112
|
-
id:
|
4113
|
-
card_id:
|
4112
|
+
id: 7712
|
4113
|
+
card_id: 1351
|
4114
4114
|
card_act_id: 1
|
4115
4115
|
super_action_id:
|
4116
|
-
action_type:
|
4116
|
+
action_type: 1
|
4117
4117
|
draft: false
|
4118
4118
|
card_actions_589:
|
4119
|
-
id:
|
4120
|
-
card_id:
|
4119
|
+
id: 7713
|
4120
|
+
card_id: 1441
|
4121
4121
|
card_act_id: 1
|
4122
|
-
super_action_id:
|
4122
|
+
super_action_id: 7712
|
4123
4123
|
action_type: 0
|
4124
4124
|
draft: false
|
4125
4125
|
card_actions_590:
|
4126
|
-
id:
|
4127
|
-
card_id:
|
4126
|
+
id: 7716
|
4127
|
+
card_id: 1444
|
4128
4128
|
card_act_id: 1
|
4129
|
-
super_action_id:
|
4129
|
+
super_action_id: 7712
|
4130
4130
|
action_type: 0
|
4131
4131
|
draft: false
|
4132
4132
|
card_actions_591:
|
4133
|
-
id:
|
4134
|
-
card_id:
|
4133
|
+
id: 7717
|
4134
|
+
card_id: 1443
|
4135
4135
|
card_act_id: 1
|
4136
|
-
super_action_id:
|
4137
|
-
action_type:
|
4136
|
+
super_action_id: 7716
|
4137
|
+
action_type: 0
|
4138
4138
|
draft: false
|
4139
4139
|
card_actions_592:
|
4140
|
-
id:
|
4141
|
-
card_id:
|
4140
|
+
id: 7721
|
4141
|
+
card_id: 1355
|
4142
4142
|
card_act_id: 1
|
4143
4143
|
super_action_id:
|
4144
4144
|
action_type: 1
|
4145
4145
|
draft: false
|
4146
4146
|
card_actions_593:
|
4147
|
-
id:
|
4148
|
-
card_id:
|
4147
|
+
id: 7722
|
4148
|
+
card_id: 1446
|
4149
|
+
card_act_id: 1
|
4150
|
+
super_action_id: 7721
|
4151
|
+
action_type: 0
|
4152
|
+
draft: false
|
4153
|
+
card_actions_594:
|
4154
|
+
id: 7725
|
4155
|
+
card_id: 1448
|
4156
|
+
card_act_id: 1
|
4157
|
+
super_action_id: 7721
|
4158
|
+
action_type: 0
|
4159
|
+
draft: false
|
4160
|
+
card_actions_595:
|
4161
|
+
id: 7729
|
4162
|
+
card_id: 1359
|
4149
4163
|
card_act_id: 1
|
4150
4164
|
super_action_id:
|
4151
4165
|
action_type: 1
|
4152
4166
|
draft: false
|
4153
|
-
|
4154
|
-
id:
|
4155
|
-
card_id:
|
4167
|
+
card_actions_596:
|
4168
|
+
id: 7730
|
4169
|
+
card_id: 1450
|
4170
|
+
card_act_id: 1
|
4171
|
+
super_action_id: 7729
|
4172
|
+
action_type: 0
|
4173
|
+
draft: false
|
4174
|
+
card_actions_597:
|
4175
|
+
id: 7733
|
4176
|
+
card_id: 1452
|
4177
|
+
card_act_id: 1
|
4178
|
+
super_action_id: 7729
|
4179
|
+
action_type: 0
|
4180
|
+
draft: false
|
4181
|
+
card_actions_598:
|
4182
|
+
id: 7737
|
4183
|
+
card_id: 1363
|
4156
4184
|
card_act_id: 1
|
4157
4185
|
super_action_id:
|
4158
4186
|
action_type: 1
|
4159
4187
|
draft: false
|
4160
|
-
|
4161
|
-
id:
|
4162
|
-
card_id:
|
4188
|
+
card_actions_599:
|
4189
|
+
id: 7738
|
4190
|
+
card_id: 1454
|
4191
|
+
card_act_id: 1
|
4192
|
+
super_action_id: 7737
|
4193
|
+
action_type: 0
|
4194
|
+
draft: false
|
4195
|
+
card_actions_600:
|
4196
|
+
id: 7741
|
4197
|
+
card_id: 1456
|
4198
|
+
card_act_id: 1
|
4199
|
+
super_action_id: 7737
|
4200
|
+
action_type: 0
|
4201
|
+
draft: false
|
4202
|
+
card_actions_601:
|
4203
|
+
id: 7745
|
4204
|
+
card_id: 1367
|
4163
4205
|
card_act_id: 1
|
4164
4206
|
super_action_id:
|
4165
4207
|
action_type: 1
|
4166
4208
|
draft: false
|
4167
|
-
|
4168
|
-
id:
|
4169
|
-
card_id:
|
4209
|
+
card_actions_602:
|
4210
|
+
id: 7746
|
4211
|
+
card_id: 1458
|
4212
|
+
card_act_id: 1
|
4213
|
+
super_action_id: 7745
|
4214
|
+
action_type: 0
|
4215
|
+
draft: false
|
4216
|
+
card_actions_603:
|
4217
|
+
id: 7749
|
4218
|
+
card_id: 1460
|
4219
|
+
card_act_id: 1
|
4220
|
+
super_action_id: 7745
|
4221
|
+
action_type: 0
|
4222
|
+
draft: false
|
4223
|
+
card_actions_604:
|
4224
|
+
id: 7753
|
4225
|
+
card_id: 1371
|
4170
4226
|
card_act_id: 1
|
4171
4227
|
super_action_id:
|
4172
4228
|
action_type: 1
|
4173
4229
|
draft: false
|
4174
|
-
|
4175
|
-
id:
|
4176
|
-
card_id:
|
4230
|
+
card_actions_605:
|
4231
|
+
id: 7754
|
4232
|
+
card_id: 1462
|
4233
|
+
card_act_id: 1
|
4234
|
+
super_action_id: 7753
|
4235
|
+
action_type: 0
|
4236
|
+
draft: false
|
4237
|
+
card_actions_606:
|
4238
|
+
id: 7757
|
4239
|
+
card_id: 1464
|
4240
|
+
card_act_id: 1
|
4241
|
+
super_action_id: 7753
|
4242
|
+
action_type: 0
|
4243
|
+
draft: false
|
4244
|
+
card_actions_607:
|
4245
|
+
id: 7761
|
4246
|
+
card_id: 1375
|
4177
4247
|
card_act_id: 1
|
4178
4248
|
super_action_id:
|
4179
4249
|
action_type: 1
|
4180
4250
|
draft: false
|
4181
|
-
|
4182
|
-
id:
|
4183
|
-
card_id:
|
4251
|
+
card_actions_608:
|
4252
|
+
id: 7762
|
4253
|
+
card_id: 1466
|
4254
|
+
card_act_id: 1
|
4255
|
+
super_action_id: 7761
|
4256
|
+
action_type: 0
|
4257
|
+
draft: false
|
4258
|
+
card_actions_609:
|
4259
|
+
id: 7765
|
4260
|
+
card_id: 1468
|
4261
|
+
card_act_id: 1
|
4262
|
+
super_action_id: 7761
|
4263
|
+
action_type: 0
|
4264
|
+
draft: false
|
4265
|
+
card_actions_610:
|
4266
|
+
id: 7769
|
4267
|
+
card_id: 1379
|
4184
4268
|
card_act_id: 1
|
4185
4269
|
super_action_id:
|
4186
4270
|
action_type: 1
|
4187
4271
|
draft: false
|
4188
|
-
|
4189
|
-
id:
|
4190
|
-
card_id:
|
4272
|
+
card_actions_611:
|
4273
|
+
id: 7770
|
4274
|
+
card_id: 1470
|
4275
|
+
card_act_id: 1
|
4276
|
+
super_action_id: 7769
|
4277
|
+
action_type: 0
|
4278
|
+
draft: false
|
4279
|
+
card_actions_612:
|
4280
|
+
id: 7773
|
4281
|
+
card_id: 1472
|
4282
|
+
card_act_id: 1
|
4283
|
+
super_action_id: 7769
|
4284
|
+
action_type: 0
|
4285
|
+
draft: false
|
4286
|
+
card_actions_613:
|
4287
|
+
id: 7777
|
4288
|
+
card_id: 1383
|
4191
4289
|
card_act_id: 1
|
4192
4290
|
super_action_id:
|
4193
4291
|
action_type: 1
|
4194
4292
|
draft: false
|
4195
|
-
|
4196
|
-
id:
|
4197
|
-
card_id:
|
4293
|
+
card_actions_614:
|
4294
|
+
id: 7778
|
4295
|
+
card_id: 1474
|
4296
|
+
card_act_id: 1
|
4297
|
+
super_action_id: 7777
|
4298
|
+
action_type: 0
|
4299
|
+
draft: false
|
4300
|
+
card_actions_615:
|
4301
|
+
id: 7781
|
4302
|
+
card_id: 1476
|
4303
|
+
card_act_id: 1
|
4304
|
+
super_action_id: 7777
|
4305
|
+
action_type: 0
|
4306
|
+
draft: false
|
4307
|
+
card_actions_616:
|
4308
|
+
id: 7785
|
4309
|
+
card_id: 1387
|
4310
|
+
card_act_id: 1
|
4311
|
+
super_action_id:
|
4312
|
+
action_type: 1
|
4313
|
+
draft: false
|
4314
|
+
card_actions_617:
|
4315
|
+
id: 7786
|
4316
|
+
card_id: 1478
|
4317
|
+
card_act_id: 1
|
4318
|
+
super_action_id: 7785
|
4319
|
+
action_type: 0
|
4320
|
+
draft: false
|
4321
|
+
card_actions_618:
|
4322
|
+
id: 7789
|
4323
|
+
card_id: 1480
|
4324
|
+
card_act_id: 1
|
4325
|
+
super_action_id: 7785
|
4326
|
+
action_type: 0
|
4327
|
+
draft: false
|
4328
|
+
card_actions_619:
|
4329
|
+
id: 7793
|
4330
|
+
card_id: 1391
|
4331
|
+
card_act_id: 1
|
4332
|
+
super_action_id:
|
4333
|
+
action_type: 1
|
4334
|
+
draft: false
|
4335
|
+
card_actions_620:
|
4336
|
+
id: 7794
|
4337
|
+
card_id: 1482
|
4338
|
+
card_act_id: 1
|
4339
|
+
super_action_id: 7793
|
4340
|
+
action_type: 0
|
4341
|
+
draft: false
|
4342
|
+
card_actions_621:
|
4343
|
+
id: 7797
|
4344
|
+
card_id: 1484
|
4345
|
+
card_act_id: 1
|
4346
|
+
super_action_id: 7793
|
4347
|
+
action_type: 0
|
4348
|
+
draft: false
|
4349
|
+
card_actions_622:
|
4350
|
+
id: 7801
|
4351
|
+
card_id: 1395
|
4352
|
+
card_act_id: 1
|
4353
|
+
super_action_id:
|
4354
|
+
action_type: 1
|
4355
|
+
draft: false
|
4356
|
+
card_actions_623:
|
4357
|
+
id: 7802
|
4358
|
+
card_id: 1486
|
4359
|
+
card_act_id: 1
|
4360
|
+
super_action_id: 7801
|
4361
|
+
action_type: 0
|
4362
|
+
draft: false
|
4363
|
+
card_actions_624:
|
4364
|
+
id: 7805
|
4365
|
+
card_id: 1488
|
4366
|
+
card_act_id: 1
|
4367
|
+
super_action_id: 7801
|
4368
|
+
action_type: 0
|
4369
|
+
draft: false
|
4370
|
+
card_actions_625:
|
4371
|
+
id: 7809
|
4372
|
+
card_id: 1399
|
4373
|
+
card_act_id: 1
|
4374
|
+
super_action_id:
|
4375
|
+
action_type: 1
|
4376
|
+
draft: false
|
4377
|
+
card_actions_626:
|
4378
|
+
id: 7810
|
4379
|
+
card_id: 1490
|
4380
|
+
card_act_id: 1
|
4381
|
+
super_action_id: 7809
|
4382
|
+
action_type: 0
|
4383
|
+
draft: false
|
4384
|
+
card_actions_627:
|
4385
|
+
id: 7813
|
4386
|
+
card_id: 1492
|
4387
|
+
card_act_id: 1
|
4388
|
+
super_action_id: 7809
|
4389
|
+
action_type: 0
|
4390
|
+
draft: false
|
4391
|
+
card_actions_628:
|
4392
|
+
id: 7817
|
4393
|
+
card_id: 1403
|
4394
|
+
card_act_id: 1
|
4395
|
+
super_action_id:
|
4396
|
+
action_type: 1
|
4397
|
+
draft: false
|
4398
|
+
card_actions_629:
|
4399
|
+
id: 7818
|
4400
|
+
card_id: 1494
|
4401
|
+
card_act_id: 1
|
4402
|
+
super_action_id: 7817
|
4403
|
+
action_type: 0
|
4404
|
+
draft: false
|
4405
|
+
card_actions_630:
|
4406
|
+
id: 7821
|
4407
|
+
card_id: 1496
|
4408
|
+
card_act_id: 1
|
4409
|
+
super_action_id: 7817
|
4410
|
+
action_type: 0
|
4411
|
+
draft: false
|
4412
|
+
card_actions_631:
|
4413
|
+
id: 7825
|
4414
|
+
card_id: 1407
|
4415
|
+
card_act_id: 1
|
4416
|
+
super_action_id:
|
4417
|
+
action_type: 1
|
4418
|
+
draft: false
|
4419
|
+
card_actions_632:
|
4420
|
+
id: 7826
|
4421
|
+
card_id: 1498
|
4422
|
+
card_act_id: 1
|
4423
|
+
super_action_id: 7825
|
4424
|
+
action_type: 0
|
4425
|
+
draft: false
|
4426
|
+
card_actions_633:
|
4427
|
+
id: 7829
|
4428
|
+
card_id: 1500
|
4429
|
+
card_act_id: 1
|
4430
|
+
super_action_id: 7825
|
4431
|
+
action_type: 0
|
4432
|
+
draft: false
|
4433
|
+
card_actions_634:
|
4434
|
+
id: 7833
|
4435
|
+
card_id: 1411
|
4436
|
+
card_act_id: 1
|
4437
|
+
super_action_id:
|
4438
|
+
action_type: 1
|
4439
|
+
draft: false
|
4440
|
+
card_actions_635:
|
4441
|
+
id: 7834
|
4442
|
+
card_id: 1502
|
4443
|
+
card_act_id: 1
|
4444
|
+
super_action_id: 7833
|
4445
|
+
action_type: 0
|
4446
|
+
draft: false
|
4447
|
+
card_actions_636:
|
4448
|
+
id: 7837
|
4449
|
+
card_id: 1504
|
4450
|
+
card_act_id: 1
|
4451
|
+
super_action_id: 7833
|
4452
|
+
action_type: 0
|
4453
|
+
draft: false
|
4454
|
+
card_actions_637:
|
4455
|
+
id: 7842
|
4456
|
+
card_id: 1060
|
4457
|
+
card_act_id: 1
|
4458
|
+
super_action_id:
|
4459
|
+
action_type: 1
|
4460
|
+
draft: false
|
4461
|
+
card_actions_638:
|
4462
|
+
id: 7854
|
4463
|
+
card_id: 69
|
4198
4464
|
card_act_id: 1
|
4199
4465
|
super_action_id:
|
4200
4466
|
action_type: 1
|