├── .gitignore ├── README.md ├── bot-report.md ├── code ├── contracts │ ├── .gitignore │ ├── .gitmodules │ ├── SystemConfig.json │ ├── ethereum │ │ ├── .editorconfig │ │ ├── .env │ │ ├── .gitignore │ │ ├── .nvmrc │ │ ├── .prettierrc │ │ ├── .solhint.json │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── contracts │ │ │ ├── bridge │ │ │ │ ├── L1ERC20Bridge.sol │ │ │ │ ├── L1WethBridge.sol │ │ │ │ ├── interfaces │ │ │ │ │ ├── IL1Bridge.sol │ │ │ │ │ ├── IL1BridgeLegacy.sol │ │ │ │ │ ├── IL2Bridge.sol │ │ │ │ │ ├── IL2ERC20Bridge.sol │ │ │ │ │ ├── IL2WethBridge.sol │ │ │ │ │ └── IWETH9.sol │ │ │ │ └── libraries │ │ │ │ │ └── BridgeInitializationHelper.sol │ │ │ ├── common │ │ │ │ ├── AllowList.sol │ │ │ │ ├── AllowListed.sol │ │ │ │ ├── Dependencies.sol │ │ │ │ ├── L2ContractAddresses.sol │ │ │ │ ├── ReentrancyGuard.sol │ │ │ │ ├── interfaces │ │ │ │ │ ├── IAllowList.sol │ │ │ │ │ └── IL2ContractDeployer.sol │ │ │ │ └── libraries │ │ │ │ │ ├── L2ContractHelper.sol │ │ │ │ │ ├── UncheckedMath.sol │ │ │ │ │ └── UnsafeBytes.sol │ │ │ ├── dev-contracts │ │ │ │ ├── ConstructorForwarder.sol │ │ │ │ ├── EventOnFallback.sol │ │ │ │ ├── Forwarder.sol │ │ │ │ ├── Multicall.sol │ │ │ │ ├── Multicall3.sol │ │ │ │ ├── ReturnSomething.sol │ │ │ │ ├── RevertFallback.sol │ │ │ │ ├── RevertReceiveAccount.sol │ │ │ │ ├── RevertTransferERC20.sol │ │ │ │ ├── SingletonFactory.sol │ │ │ │ ├── TestnetERC20Token.sol │ │ │ │ ├── WETH9.sol │ │ │ │ └── test │ │ │ │ │ ├── AdminFacetTest.sol │ │ │ │ │ ├── CustomUpgradeTest.sol │ │ │ │ │ ├── DiamondCutTestContract.sol │ │ │ │ │ ├── DiamondProxyTest.sol │ │ │ │ │ ├── DummyERC20BytesTransferReturnValue.sol │ │ │ │ │ ├── DummyERC20NoTransferReturnValue.sol │ │ │ │ │ ├── DummyExecutor.sol │ │ │ │ │ ├── L1ERC20BridgeTest.sol │ │ │ │ │ ├── MerkleTest.sol │ │ │ │ │ ├── MockExecutor.sol │ │ │ │ │ ├── PriorityQueueTest.sol │ │ │ │ │ ├── ReenterGovernance.sol │ │ │ │ │ ├── TransactionValidatorTest.sol │ │ │ │ │ ├── UnsafeBytesTest.sol │ │ │ │ │ ├── VerifierRecursiveTest.sol │ │ │ │ │ └── VerifierTest.sol │ │ │ ├── governance │ │ │ │ ├── Governance.sol │ │ │ │ └── IGovernance.sol │ │ │ ├── upgrades │ │ │ │ ├── BaseZkSyncUpgrade.sol │ │ │ │ └── DefaultUpgrade.sol │ │ │ ├── vendor │ │ │ │ └── AddressAliasHelper.sol │ │ │ └── zksync │ │ │ │ ├── Config.sol │ │ │ │ ├── DiamondInit.sol │ │ │ │ ├── DiamondProxy.sol │ │ │ │ ├── Storage.sol │ │ │ │ ├── ValidatorTimelock.sol │ │ │ │ ├── Verifier.sol │ │ │ │ ├── facets │ │ │ │ ├── Admin.sol │ │ │ │ ├── Base.sol │ │ │ │ ├── Executor.sol │ │ │ │ ├── Getters.sol │ │ │ │ └── Mailbox.sol │ │ │ │ ├── interfaces │ │ │ │ ├── IAdmin.sol │ │ │ │ ├── IBase.sol │ │ │ │ ├── IExecutor.sol │ │ │ │ ├── IGetters.sol │ │ │ │ ├── ILegacyGetters.sol │ │ │ │ ├── IMailbox.sol │ │ │ │ ├── IVerifier.sol │ │ │ │ └── IZkSync.sol │ │ │ │ └── libraries │ │ │ │ ├── Diamond.sol │ │ │ │ ├── LibMap.sol │ │ │ │ ├── Merkle.sol │ │ │ │ ├── PriorityQueue.sol │ │ │ │ └── TransactionValidator.sol │ │ ├── foundry.toml │ │ ├── hardhat.config.ts │ │ ├── lib │ │ │ └── forge-std │ │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── ci.yml │ │ │ │ │ └── sync.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── LICENSE-APACHE │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── foundry.toml │ │ │ │ ├── lib │ │ │ │ └── ds-test │ │ │ │ │ ├── .github │ │ │ │ │ └── workflows │ │ │ │ │ │ └── build.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── demo │ │ │ │ │ └── demo.sol │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ ├── test.sol │ │ │ │ │ └── test.t.sol │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ ├── Base.sol │ │ │ │ ├── Script.sol │ │ │ │ ├── StdAssertions.sol │ │ │ │ ├── StdChains.sol │ │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdError.sol │ │ │ │ ├── StdInvariant.sol │ │ │ │ ├── StdJson.sol │ │ │ │ ├── StdMath.sol │ │ │ │ ├── StdStorage.sol │ │ │ │ ├── StdStyle.sol │ │ │ │ ├── StdUtils.sol │ │ │ │ ├── Test.sol │ │ │ │ ├── Vm.sol │ │ │ │ ├── console.sol │ │ │ │ ├── console2.sol │ │ │ │ ├── interfaces │ │ │ │ │ ├── IERC1155.sol │ │ │ │ │ ├── IERC165.sol │ │ │ │ │ ├── IERC20.sol │ │ │ │ │ ├── IERC4626.sol │ │ │ │ │ ├── IERC721.sol │ │ │ │ │ └── IMulticall3.sol │ │ │ │ └── safeconsole.sol │ │ │ │ └── test │ │ │ │ ├── StdAssertions.t.sol │ │ │ │ ├── StdChains.t.sol │ │ │ │ ├── StdCheats.t.sol │ │ │ │ ├── StdError.t.sol │ │ │ │ ├── StdMath.t.sol │ │ │ │ ├── StdStorage.t.sol │ │ │ │ ├── StdStyle.t.sol │ │ │ │ ├── StdUtils.t.sol │ │ │ │ ├── compilation │ │ │ │ ├── CompilationScript.sol │ │ │ │ ├── CompilationScriptBase.sol │ │ │ │ ├── CompilationTest.sol │ │ │ │ └── CompilationTestBase.sol │ │ │ │ └── fixtures │ │ │ │ └── broadcast.log.json │ │ ├── package.json │ │ ├── remappings.txt │ │ ├── scripts │ │ │ ├── allow-list-manager.ts │ │ │ ├── deploy-erc20.ts │ │ │ ├── deploy-testkit.ts │ │ │ ├── deploy-testnet-token.ts │ │ │ ├── deploy-weth-bridges.ts │ │ │ ├── deploy-withdrawal-helpers.ts │ │ │ ├── deploy.ts │ │ │ ├── initialize-bridges.ts │ │ │ ├── initialize-governance.ts │ │ │ ├── initialize-l1-allow-list.ts │ │ │ ├── initialize-l2-weth-token.ts │ │ │ ├── initialize-validator.ts │ │ │ ├── initialize-weth-bridges.ts │ │ │ ├── read-variable.ts │ │ │ ├── revert-reason.ts │ │ │ ├── token-info.ts │ │ │ ├── upgrades │ │ │ │ ├── upgrade-1.ts │ │ │ │ ├── upgrade-2.ts │ │ │ │ ├── upgrade-3.ts │ │ │ │ ├── upgrade-4.ts │ │ │ │ ├── upgrade-5.ts │ │ │ │ └── upgrade-6.ts │ │ │ ├── utils.ts │ │ │ └── verify.ts │ │ ├── src.ts │ │ │ ├── deploy-utils.ts │ │ │ ├── deploy.ts │ │ │ └── diamondCut.ts │ │ ├── test │ │ │ ├── foundry │ │ │ │ └── unit │ │ │ │ │ └── concrete │ │ │ │ │ ├── AllowList │ │ │ │ │ ├── AccessMode │ │ │ │ │ │ ├── DepositLimit.t.sol │ │ │ │ │ │ ├── SetAccessMode.t.sol │ │ │ │ │ │ ├── SetBatchAccessMode.t.sol │ │ │ │ │ │ └── _AccessMode_Shared.t.sol │ │ │ │ │ ├── Permission │ │ │ │ │ │ ├── SetBatchPermissionToCall.t.sol │ │ │ │ │ │ ├── SetPermissionToCall.t.sol │ │ │ │ │ │ └── _Permission_Shared.t.sol │ │ │ │ │ └── _AllowList_Shared.t.sol │ │ │ │ │ ├── Bridge │ │ │ │ │ └── L1WethBridge │ │ │ │ │ │ ├── ClaimFailedDeposit.t.sol │ │ │ │ │ │ ├── Deposit.t.sol │ │ │ │ │ │ ├── FinalizeWithdrawal.t.sol │ │ │ │ │ │ ├── L2TokenAddress.t.sol │ │ │ │ │ │ ├── Receive.t.sol │ │ │ │ │ │ └── _L1WethBridge_Shared.t.sol │ │ │ │ │ ├── DiamondCut │ │ │ │ │ ├── FacetCut.t.sol │ │ │ │ │ ├── Initialization.t.sol │ │ │ │ │ ├── UpgradeLogic.t.sol │ │ │ │ │ └── _DiamondCut_Shared.t.sol │ │ │ │ │ ├── Executor │ │ │ │ │ ├── Authorization.t.sol │ │ │ │ │ ├── Committing.t.sol │ │ │ │ │ ├── Executing.t.sol │ │ │ │ │ ├── Proving.t.sol │ │ │ │ │ ├── Reverting.t.sol │ │ │ │ │ └── _Executor_Shared.t.sol │ │ │ │ │ ├── Governance │ │ │ │ │ ├── Authorization.t.sol │ │ │ │ │ ├── Executing.t.sol │ │ │ │ │ ├── Fallback.t.sol │ │ │ │ │ ├── OperationStatus.t.sol │ │ │ │ │ ├── Reentrancy.t.sol │ │ │ │ │ ├── SelfUpgrades.t.sol │ │ │ │ │ └── _Governance_Shared.t.sol │ │ │ │ │ ├── UnsafeBytes │ │ │ │ │ └── UnsafeBytes.t.sol │ │ │ │ │ └── Utils │ │ │ │ │ ├── Utils.sol │ │ │ │ │ └── Utils.t.sol │ │ │ └── unit_tests │ │ │ │ ├── erc20-bridge-upgrade.fork.ts │ │ │ │ ├── governance_test.spec.ts │ │ │ │ ├── l1_erc20_bridge_test.spec.ts │ │ │ │ ├── l1_weth_bridge_test.spec.ts │ │ │ │ ├── l2-upgrade.test.spec.ts │ │ │ │ ├── mailbox_test.spec.ts │ │ │ │ ├── merkle_test.spec.ts │ │ │ │ ├── priority_queue_test.spec.ts │ │ │ │ ├── proxy_test.spec.ts │ │ │ │ ├── transaction_validator_test.spec.ts │ │ │ │ ├── utils.ts │ │ │ │ ├── validator_timelock_test.spec.ts │ │ │ │ ├── verifier.spec.ts │ │ │ │ └── zksync-upgrade.fork.ts │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ ├── upgrade-system │ │ │ ├── facets.ts │ │ │ ├── index.ts │ │ │ ├── utils.ts │ │ │ └── verifier.ts │ │ └── yarn.lock │ ├── tools │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── data │ │ │ ├── scheduler_key.json │ │ │ └── verifier_contract_template.txt │ │ ├── rust-toolchain │ │ └── src │ │ │ └── main.rs │ └── zksync │ │ ├── .gitignore │ │ ├── .nvmrc │ │ ├── .solhint.json │ │ ├── contracts │ │ ├── Dependencies.sol │ │ ├── ForceDeployUpgrader.sol │ │ ├── L2ContractHelper.sol │ │ ├── SystemContractsCaller.sol │ │ ├── TestnetPaymaster.sol │ │ ├── bridge │ │ │ ├── L2ERC20Bridge.sol │ │ │ ├── L2StandardERC20.sol │ │ │ ├── L2Weth.sol │ │ │ ├── L2WethBridge.sol │ │ │ └── interfaces │ │ │ │ ├── IL1Bridge.sol │ │ │ │ ├── IL2Bridge.sol │ │ │ │ ├── IL2StandardToken.sol │ │ │ │ └── IL2Weth.sol │ │ ├── interfaces │ │ │ ├── IPaymaster.sol │ │ │ └── IPaymasterFlow.sol │ │ └── vendor │ │ │ └── AddressAliasHelper.sol │ │ ├── hardhat.config.ts │ │ ├── package.json │ │ ├── scripts │ │ └── quick-setup.sh │ │ ├── src │ │ ├── deployForceDeployUpgrader.ts │ │ ├── deployL2Weth.ts │ │ ├── deployTestnetPaymaster.ts │ │ ├── publish-bridge-preimages.ts │ │ ├── upgradeL2BridgeImpl.ts │ │ ├── utils.ts │ │ └── verify.ts │ │ ├── test │ │ └── weth.test.ts │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ └── yarn.lock ├── era-zk_evm │ ├── .gitignore │ ├── Cargo.toml │ ├── deny.toml │ └── src │ │ ├── block_properties │ │ └── mod.rs │ │ ├── errors │ │ └── mod.rs │ │ ├── flags.rs │ │ ├── lib.rs │ │ ├── opcodes │ │ ├── execution │ │ │ ├── add.rs │ │ │ ├── binop.rs │ │ │ ├── context.rs │ │ │ ├── div.rs │ │ │ ├── far_call.rs │ │ │ ├── jump.rs │ │ │ ├── log.rs │ │ │ ├── mod.rs │ │ │ ├── mul.rs │ │ │ ├── near_call.rs │ │ │ ├── noop.rs │ │ │ ├── ptr.rs │ │ │ ├── ret.rs │ │ │ ├── shift.rs │ │ │ ├── sub.rs │ │ │ └── uma.rs │ │ ├── mod.rs │ │ └── parsing.rs │ │ ├── reference_impls │ │ ├── decommitter.rs │ │ ├── event_sink.rs │ │ ├── memory.rs │ │ └── mod.rs │ │ ├── testing │ │ ├── debug_tracer.rs │ │ ├── mod.rs │ │ ├── simple_tracer.rs │ │ ├── storage.rs │ │ └── tests │ │ │ ├── mod.rs │ │ │ ├── precompiles │ │ │ ├── ecrecover.rs │ │ │ ├── keccak256.rs │ │ │ ├── mod.rs │ │ │ └── sha256.rs │ │ │ └── trivial.rs │ │ ├── tests │ │ ├── assembly.rs │ │ └── mod.rs │ │ ├── tracing.rs │ │ ├── utils.rs │ │ ├── vm_state │ │ ├── aux_data.rs │ │ ├── cycle.rs │ │ ├── execution_stack.rs │ │ ├── helpers.rs │ │ ├── mem_ops.rs │ │ ├── mod.rs │ │ └── pending_port.rs │ │ └── witness_trace │ │ └── mod.rs ├── era-zkevm_circuits │ ├── .gitignore │ ├── Cargo.toml │ ├── cs_derive │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── .DS_Store │ │ │ ├── allocatable │ │ │ └── mod.rs │ │ │ ├── lib.rs │ │ │ ├── selectable │ │ │ └── mod.rs │ │ │ ├── utils.rs │ │ │ ├── var_length_encodable │ │ │ └── mod.rs │ │ │ └── witness_hook │ │ │ └── mod.rs │ ├── deny.toml │ ├── rust-toolchain.toml │ ├── rustfmt.toml │ └── src │ │ ├── .DS_Store │ │ ├── base_structures │ │ ├── .DS_Store │ │ ├── decommit_query │ │ │ └── mod.rs │ │ ├── log_query │ │ │ └── mod.rs │ │ ├── memory_query │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── precompile_input_outputs │ │ │ └── mod.rs │ │ ├── recursion_query │ │ │ └── mod.rs │ │ ├── register │ │ │ └── mod.rs │ │ ├── state_diff_record │ │ │ └── mod.rs │ │ └── vm_state │ │ │ ├── callstack.rs │ │ │ ├── mod.rs │ │ │ └── saved_context.rs │ │ ├── code_unpacker_sha256 │ │ ├── input.rs │ │ └── mod.rs │ │ ├── config.rs │ │ ├── demux_log_queue │ │ ├── input.rs │ │ └── mod.rs │ │ ├── ecrecover │ │ ├── input.rs │ │ ├── mod.rs │ │ └── secp256k1 │ │ │ ├── fq.rs │ │ │ ├── fr.rs │ │ │ └── mod.rs │ │ ├── fsm_input_output │ │ ├── circuit_inputs │ │ │ ├── main_vm.rs │ │ │ └── mod.rs │ │ └── mod.rs │ │ ├── keccak256_round_function │ │ ├── input.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── linear_hasher │ │ ├── input.rs │ │ └── mod.rs │ │ ├── log_sorter │ │ ├── input.rs │ │ └── mod.rs │ │ ├── main_vm │ │ ├── cycle.rs │ │ ├── decoded_opcode.rs │ │ ├── loading.rs │ │ ├── mod.rs │ │ ├── opcode_bitmask.rs │ │ ├── opcodes │ │ │ ├── add_sub.rs │ │ │ ├── binop.rs │ │ │ ├── call_ret.rs │ │ │ ├── call_ret_impl │ │ │ │ ├── far_call.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── near_call.rs │ │ │ │ └── ret.rs │ │ │ ├── context.rs │ │ │ ├── jump.rs │ │ │ ├── log.rs │ │ │ ├── mod.rs │ │ │ ├── mul_div.rs │ │ │ ├── nop.rs │ │ │ ├── ptr.rs │ │ │ ├── shifts.rs │ │ │ └── uma.rs │ │ ├── pre_state.rs │ │ ├── register_input_view.rs │ │ ├── state_diffs.rs │ │ ├── utils.rs │ │ └── witness_oracle.rs │ │ ├── ram_permutation │ │ ├── input.rs │ │ └── mod.rs │ │ ├── recursion │ │ ├── .DS_Store │ │ ├── compression │ │ │ ├── input.rs │ │ │ └── mod.rs │ │ ├── interblock │ │ │ ├── input.rs │ │ │ ├── keccak_aggregator.rs │ │ │ └── mod.rs │ │ ├── leaf_layer │ │ │ ├── input.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ └── node_layer │ │ │ ├── input.rs │ │ │ └── mod.rs │ │ ├── scheduler │ │ ├── auxiliary.rs │ │ ├── block_header │ │ │ └── mod.rs │ │ ├── input.rs │ │ └── mod.rs │ │ ├── sha256_round_function │ │ ├── input.rs │ │ └── mod.rs │ │ ├── sort_decommittment_requests │ │ ├── input.rs │ │ └── mod.rs │ │ ├── storage_application │ │ ├── input.rs │ │ └── mod.rs │ │ ├── storage_validity_by_grand_product │ │ ├── input.rs │ │ ├── mod.rs │ │ └── test_input.rs │ │ ├── tables │ │ ├── bitshift.rs │ │ ├── conditional.rs │ │ ├── integer_to_boolean_mask.rs │ │ ├── mod.rs │ │ ├── opcodes_decoding.rs │ │ └── uma_ptr_read_cleanup.rs │ │ └── utils.rs ├── scope.txt └── system-contracts │ ├── .gitignore │ ├── SystemConfig.json │ ├── bootloader │ ├── bootloader.yul │ └── tests │ │ ├── dummy.yul │ │ └── transfer_test.yul │ ├── contracts │ ├── AccountCodeStorage.sol │ ├── BootloaderUtilities.sol │ ├── ComplexUpgrader.sol │ ├── Compressor.sol │ ├── Constants.sol │ ├── ContractDeployer.sol │ ├── DefaultAccount.sol │ ├── EmptyContract.sol │ ├── EventWriter.yul │ ├── ImmutableSimulator.sol │ ├── KnownCodesStorage.sol │ ├── L1Messenger.sol │ ├── L2EthToken.sol │ ├── MsgValueSimulator.sol │ ├── NonceHolder.sol │ ├── SystemContext.sol │ ├── interfaces │ │ ├── IAccount.sol │ │ ├── IAccountCodeStorage.sol │ │ ├── IBootloaderUtilities.sol │ │ ├── IComplexUpgrader.sol │ │ ├── ICompressor.sol │ │ ├── IContractDeployer.sol │ │ ├── IEthToken.sol │ │ ├── IImmutableSimulator.sol │ │ ├── IKnownCodesStorage.sol │ │ ├── IL1Messenger.sol │ │ ├── IL2StandardToken.sol │ │ ├── IMailbox.sol │ │ ├── INonceHolder.sol │ │ ├── IPaymaster.sol │ │ ├── IPaymasterFlow.sol │ │ ├── ISystemContext.sol │ │ ├── ISystemContextDeprecated.sol │ │ └── ISystemContract.sol │ ├── libraries │ │ ├── EfficientCall.sol │ │ ├── RLPEncoder.sol │ │ ├── SystemContractHelper.sol │ │ ├── SystemContractsCaller.sol │ │ ├── TransactionHelper.sol │ │ ├── UnsafeBytesCalldata.sol │ │ └── Utils.sol │ ├── openzeppelin │ │ ├── token │ │ │ └── ERC20 │ │ │ │ ├── IERC20.sol │ │ │ │ ├── extensions │ │ │ │ └── IERC20Permit.sol │ │ │ │ └── utils │ │ │ │ └── SafeERC20.sol │ │ └── utils │ │ │ └── Address.sol │ ├── precompiles │ │ ├── EcAdd.yul │ │ ├── EcMul.yul │ │ ├── Ecrecover.yul │ │ ├── Keccak256.yul │ │ └── SHA256.yul │ └── test-contracts │ │ ├── Callable.sol │ │ ├── Deployable.sol │ │ ├── DummyUpgrade.sol │ │ ├── EventWriterTest.sol │ │ ├── MockERC20Approve.sol │ │ ├── MockKnownCodesStorage.sol │ │ ├── MockL1Messenger.sol │ │ ├── NotSystemCaller.sol │ │ ├── SystemCaller.sol │ │ ├── TestSystemContract.sol │ │ └── TestSystemContractHelper.sol │ ├── hardhat.config.ts │ ├── package.json │ ├── prettier.js │ ├── scripts │ ├── compile-yul.ts │ ├── constants.ts │ ├── deploy-preimages.ts │ ├── process.ts │ ├── quick-setup.sh │ └── utils.ts │ ├── test │ ├── AccountCodeStorage.spec.ts │ ├── BootloaderUtilities.spec.ts │ ├── ComplexUpgrader.spec.ts │ ├── Compressor.spec.ts │ ├── ContractDeployer.spec.ts │ ├── DefaultAccount.spec.ts │ ├── EcAdd.spec.ts │ ├── EcMul.spec.ts │ ├── EmptyContract.spec.ts │ ├── EventWriter.spec.ts │ ├── ImmutableSimulator.spec.ts │ ├── KnownCodesStorage.spec.ts │ └── shared │ │ ├── constants.ts │ │ ├── transactions.ts │ │ └── utils.ts │ └── yarn.lock ├── discord-export ├── Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html ├── Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files │ ├── 39790 │ ├── 0-EB806.png │ ├── 011e27ae06cfaee10f00c0453a586695-221B1.png │ ├── 01bc15fca097d7ebd27815146d19cad0-EDCFF.png │ ├── 01d0132cd2bda8d75d0f816ce712f8b5-23A0D.png │ ├── 01fe66bc1531b9b6fdd9f09f90bcbd2e-502DF.png │ ├── 02410a37de8a54f8cfb7a8842a2dd162-D2755.png │ ├── 031b7a5f3d262cf2bc59a7a43169a769-805B9.png │ ├── 0473983eb60155e816c3a2e070dcd889-A67D3.png │ ├── 049983139ea262a4e388c5132423e557-7C91D.png │ ├── 08a051c6ef73c89fd5967637cbbb4acd-9A9A6.png │ ├── 0ab6fddedfdca4dee0b54ab41ab4faad-3EFDA.png │ ├── 0b57a4cd1eac7593076c69120770f939-ED546.png │ ├── 0c3c3320c3e6aa3a03d03ef4431a326d-9E1E9.png │ ├── 0cd316a9fd5f98cba6c91f10f010ad96-01BB3.png │ ├── 0e5b3c84382435322161f927b720d8f6-5CB49.png │ ├── 1-B2132.png │ ├── 1080667809002037320-8957D.png │ ├── 1083068685914214490-81D5F.gif │ ├── 1083068770823721071-EE4F6.png │ ├── 1093375808028016691-4DA23.gif │ ├── 10de6881627ed3174e3cce7b3cc76488-95324.png │ ├── 1110201692663857255-A8E42.png │ ├── 1174022411507728384-E1D4C.gif │ ├── 12ab2a0008c986abd3d75b8d8d4e74d4-CD94C.png │ ├── 134a97341ef016a343ffb22a13e06e84-C9997.png │ ├── 14f8cbc620b0a89c2a11ca8deace58eb-DA2D1.png │ ├── 158e7b633e4f4452b161153ab7ba17c3-83F88.png │ ├── 15cdaa10c5644d913a1ab1f9f06288c1-8A82B.png │ ├── 17e6d21118aa7a0a26c8a0d14f156cdf-5A089.png │ ├── 17e75583b024fe9606de1525a9f6752a-2E795.png │ ├── 19e00fbd482789448f07352537800836-CD4DC.png │ ├── 1b46faf0b094158572e6402e79edc5b4-A7DAD.png │ ├── 1f170-0B218.svg │ ├── 1f1e8-7D86E.svg │ ├── 1f1f0-F4DC4.svg │ ├── 1f1f2-F133A.svg │ ├── 1f1f3-6F811.svg │ ├── 1f1f8-DB875.svg │ ├── 1f1fd-BFCB6.svg │ ├── 1f1fe-15819.svg │ ├── 1f1ff-94439.svg │ ├── 1f329af4692837aba5c9bfee7732958d-0F9C6.png │ ├── 1f336-5D64E.svg │ ├── 1f33a-2FF86.svg │ ├── 1f37a-390B2.svg │ ├── 1f37b-F650C.svg │ ├── 1f385-AD727.svg │ ├── 1f389-5C738.svg │ ├── 1f3c1-445DC.svg │ ├── 1f3c6-621A1.svg │ ├── 1f3fb-E58B7.svg │ ├── 1f43a-EB486.svg │ ├── 1f440-6C64D.svg │ ├── 1f446-9CC34.svg │ ├── 1f449-25CFB.svg │ ├── 1f44a-68C68.svg │ ├── 1f44b-8A059.svg │ ├── 1f44c-1f3fb-EAAEE.svg │ ├── 1f44c-59547.svg │ ├── 1f44d-1f3fb-ED2AA.svg │ ├── 1f44d-1f3fc-EAB0D.svg │ ├── 1f44d-27259.svg │ ├── 1f44e-EE417.svg │ ├── 1f44f-3D381.svg │ ├── 1f451-B565E.svg │ ├── 1f480-94524.svg │ ├── 1f49a-E8B01.svg │ ├── 1f49c-71A75.svg │ ├── 1f4aa-2FD27.svg │ ├── 1f4af-4CFF5.svg │ ├── 1f4b0-53FFF.svg │ ├── 1f4b8-E3468.svg │ ├── 1f4c6-44E30.svg │ ├── 1f4dc-AC641.svg │ ├── 1f4e2-C9D9D.svg │ ├── 1f50d-195C0.svg │ ├── 1f525-8FE4F.svg │ ├── 1f5ff-D6B6E.svg │ ├── 1f600-F7528.svg │ ├── 1f601-4E9BD.svg │ ├── 1f602-168C5.svg │ ├── 1f604-BF863.svg │ ├── 1f605-42B43.svg │ ├── 1f606-BE94E.svg │ ├── 1f609-9EC67.svg │ ├── 1f60a-3283D.svg │ ├── 1f60b-B5303.svg │ ├── 1f60d-BEAFF.svg │ ├── 1f60e-FF6EB.svg │ ├── 1f60f-2BDEE.svg │ ├── 1f614-BB5EE.svg │ ├── 1f618-0EA37.svg │ ├── 1f61b-EC4B5.svg │ ├── 1f622-BDD22.svg │ ├── 1f626-91074.svg │ ├── 1f629-B734A.svg │ ├── 1f62c-CE43C.svg │ ├── 1f62d-02603.svg │ ├── 1f62e-FE396.svg │ ├── 1f642-83E8A.svg │ ├── 1f644-329A4.svg │ ├── 1f647-200d-2642-fe0f-319F3.svg │ ├── 1f64c-1f3fb-01614.svg │ ├── 1f64c-7C820.svg │ ├── 1f64f-1f3fb-984F1.svg │ ├── 1f64f-22B8D.svg │ ├── 1f6a8-A8AB3.svg │ ├── 1f90c-5E35D.svg │ ├── 1f90e-091DA.svg │ ├── 1f911-F346C.svg │ ├── 1f913-67AB1.svg │ ├── 1f914-15707.svg │ ├── 1f91d-5A0F2.svg │ ├── 1f91f-3629E.svg │ ├── 1f923-5854E.svg │ ├── 1f92f-FF4E0.svg │ ├── 1f941-BE230.svg │ ├── 1f972-F415D.svg │ ├── 1f973-88B39.svg │ ├── 1f979-BE2CD.svg │ ├── 1f97a-1F57B.svg │ ├── 1f985-86704.svg │ ├── 1f9d1-5BC80.svg │ ├── 1fac2-960B6.svg │ ├── 1fae0-D00A5.svg │ ├── 1fae1-B19DE.svg │ ├── 1fae3-64122.svg │ ├── 2-ADBB4.png │ ├── 201416e548301c474985cfff30a5c3cf-AF15B.png │ ├── 258efb44a5e3f3ccd0db6c4b11462ff2-08900.png │ ├── 261d-1f3fb-08F0C.svg │ ├── 261d-23B11.svg │ ├── 2665-8CDCE.svg │ ├── 2696-15F4A.svg │ ├── 2705-0589F.svg │ ├── 2754-09670.svg │ ├── 2764-A3D25.svg │ ├── 2795-3358E.svg │ ├── 2a9faff195fe333526cfe6ae6fce1420-49B98.png │ ├── 2b2652e618cdea6fd857a58f2e8bce33-31040.png │ ├── 2b2699f6d9ac3249e20b27eee4a1094c-B4AF0.png │ ├── 2ba8bb567fe85ae375cf6149bdb83e4a-278B5.png │ ├── 2bc9256840cf583765cbbee210b7c33a-A77F9.png │ ├── 2c051f70ed27e4438dba6b5148fab939-D01EB.png │ ├── 2c1e18acbcb9cdaeabfd7fc6f5090edf-CA387.png │ ├── 2ce2f26b9148649282b853c9b7541f14-B7695.png │ ├── 2f50a5b69093d885f873498e78476cd1-E6AF1.png │ ├── 3-FB033.png │ ├── 30024f2eab00f1f2f2caee60d2b320a7-9F811.png │ ├── 32affc5ef9bab9ce5fe38a40d210c39b-0C7D2.png │ ├── 32bc9b17aad0e3eb8398ea8ba543d226-D3CC0.png │ ├── 33f66f7bab184557cfa2f4e7bf69e71f-F0109.png │ ├── 356e7fb4efc19f760e0524ae11c49385-41889.png │ ├── 357510ed1e5265aafb02bc7942ddaa82-01F7E.png │ ├── 366b7bd30566c2cb7cfbe6ce4a9cb61e-62DA9.png │ ├── 389cdd876d49c2af64ce8a6c1117213f-48844.png │ ├── 3b01c38b7c5b905fd8e8a1d72f7d7492-53427.png │ ├── 3cc290db84d8ae57446d6411dd6e530a-F76F4.png │ ├── 4-4551A.png │ ├── 411086cc24d93f371f41c1f28d3ac3b9-684FE.png │ ├── 4155d983056d861c045620cf8e11d612-A5980.png │ ├── 4182f210779b8c1627fa0418c7a78258-E53C0.png │ ├── 430fe5ce16c49a862957b4744b968b02-EAF19.png │ ├── 459848100857774132-A8DB9.gif │ ├── 45f63d884cbf231e2ca665be01155e18-68113.png │ ├── 46b66d498dd448743e27ba5994b06cce-4A96E.png │ ├── 492fcf2c1088e22bbbcab07a754eab58-53405.png │ ├── 5-E9BDB.png │ ├── 514d83db5e503f5a33fd3f790d42d452-555FF.png │ ├── 520534c5d8407c48744b2a2c8eb20ab3-02152.png │ ├── 5445ffd7ffb201a98393cbdf684ea4b1-FF0A0.png │ ├── 55afac51a32db1ff015fd3a7d901e67a-A5862.png │ ├── 568d22b97293cdd2d9b7006198d6adbc-F0132.png │ ├── 57758ce2-ee33-4ff5-900e-004103ce2566-A0609 │ ├── 5a078c30d4d416288536638339e819cd-F336E.png │ ├── 5b35d94cab924210240eeadc2e5e2b91-3129A.png │ ├── 5b71d15a9bcde45fd5520e3fb580eb53-E1A50.png │ ├── 5cc1d3266f7f136e8723b66a920ac162-A08C0.png │ ├── 5d084bf7a4698ae3113c164cdd53ccbe-F4903.png │ ├── 6519fe644ecf954cfdf81ad4c9fbaad9-B43F2.png │ ├── 66-58994 │ ├── 67594ee4b4d1fc03bca468327a0d145b-BD76A.png │ ├── 686e06f76068aab839e3f85d1140404d-F7305.png │ ├── 6a567cbfd6039038b3e7fb3b7b3c7185-7C949.png │ ├── 6ad4ef2f519afddce2d78021aa7dd099-B55F0.png │ ├── 6d4d83e9a4db6b2f4ac37b2d0979c5e8-4091A.png │ ├── 701300a5bdd3bf5640bd1370251533e2-0DC47.png │ ├── 754109474691612782-C3CA7.json │ ├── 758419104351649843-CABE9.png │ ├── 769400b29fb3322511a75a69c3f7f55c-6D1B7.png │ ├── 773490663245348864-8086D.png │ ├── 774308513191165992-08A98.png │ ├── 79ed4e235411ad7a3a5971b1b3754e37-EA634.png │ ├── 7adf12b468b68aad27a481176efc4b37-C776F.png │ ├── 7b7b1265bb80105efc0c077e7748a28d-F4A60.png │ ├── 7fb5758c5d2db4cd84defb760f0de04b-E0EA1.png │ ├── 80e24bbc2fada669f9f8a03aef044a7b-73586.png │ ├── 8230f476eec54d0f43d90d66df912139-9C1D4.png │ ├── 851893157188599838-C23B5.png │ ├── 851893827027075142-F23DF.png │ ├── 851893827089727568-5FD38.png │ ├── 851893827278602280-FABCC.png │ ├── 851893827315826708-F59C0.png │ ├── 851893828280909886-FBF42.png │ ├── 85e81785736a2d7dd79efcb1f5f390bc-9489A.png │ ├── 860bc8415fcb344bebcf89a301158ffd-36A89.png │ ├── 86405fe46555cfeea65230abea180e3f-B42C2.png │ ├── 8646f8b4f073429bf27df27459ab18a2-F6800.png │ ├── 879838448842846228-1B6CC.png │ ├── 8b012f0e72a057bfc421ad2b4860c8a7-EE48A.png │ ├── 8ed3a99e11f2fb13d21d899d7c6add25-D476E.png │ ├── 9010cff7dc5115048ddc82561051356b-12341.png │ ├── 901128936921128991-9C6D4.png │ ├── 910676187288846397-518CD.png │ ├── 918262047433691247-911FE.png │ ├── 920142238275764255-06F6D.png │ ├── 920756949019148299-8903C.png │ ├── 92719dd7bc8cb77c2a6b6813ef47a830-56832.png │ ├── 934055812859856cd87c3c397ccb56bd-064C4.png │ ├── 9542a3c6a8ce011c16ce81d61dc908f9-F344E.png │ ├── 9551ee7a32c0d29e74906d621eeb155d-257A7.png │ ├── 966eaf1aafcae6abcb9e0db823947e2f-96F55.png │ ├── 970d2e2f00cd7ef2134a1a3f21326349-404EA.png │ ├── 97194c8d8c110a8c51ac4127733637d5-ADD1C.png │ ├── 977133670429261884-CA8EA.png │ ├── 97d0540d85f9bdeaf447a359aec7cd73-AE94E.png │ ├── 986233840056037386-18257.gif │ ├── 9b01adfea5eb85ed7f3fc2c94c3592c8-E96F4.png │ ├── 9bf2181404e658cab4039c07df56213f-E3E89.png │ ├── 9ddc4c71e093608f901c04718c8c20df-CFA0F.png │ ├── 9f2b18758b64819e9c9233dc86c42a3c-77657.png │ ├── LXx8k7_o_400x400-2FEFA.jpg │ ├── RPReplay_Final1705454034-1712B.mov │ ├── Screenshot_2023-10-04_at_4.26.48_PM-4F452.png │ ├── Screenshot_2023-10-10_at_12.05.53_PM-C09DA.png │ ├── Screenshot_2023-10-10_at_12.05.59_PM-2701F.png │ ├── Screenshot_2023-10-11_000945-C36B7.png │ ├── Screenshot_2023-10-11_at_4.05.50_PM-BF6BD.png │ ├── Screenshot_2023-10-11_at_9.50.33_AM-C3A58.png │ ├── Screenshot_667-34FDD.png │ ├── Screenshot_670-0C713.png │ ├── WX20231020-1150572x-0A9AD.png │ ├── a03c3c93623dafd0c05f13b3a995f203-3D860.png │ ├── a1333613cb25fd50436141eec55745c9-4E7CB.png │ ├── a2137aad94eca43e965735f01ae6b491-C6B0B.png │ ├── a46a59d6636619f3cc132c12dba469a6-7A310.png │ ├── a4c5f4ed4ac3c1bfaae3fc3aa73bcdc5-9A986.png │ ├── a6700d776b9feae9a8825a05eb056151-9CE8A.png │ ├── a681a986fc31a9739459ccc096516151-9053D.png │ ├── a6defa6808e3fe166028d66a76778624-DFAA0.png │ ├── a_1bf1676e45a74aaa9b4a2f0fd1d9a798-D2471.gif │ ├── a_8c57d0418aa0476448a76ddc091071a1-7B310.gif │ ├── a_aa89d0e10b5f86c6ae82347d8dc19fe8-1A758.gif │ ├── aa24291fb1227c5734330daec1d79595-C9CFC.png │ ├── aba7f6b23cd80ec9e8655016ce6ef443-529ED.png │ ├── abb480ed1510d7994e58bc85f8e989d6-66497.png │ ├── ac37f50421d713952c5567868c0ce8fc-83194.png │ ├── adddc7313b30a4e8b5329894bf2034ab-5B4E5.png │ ├── ae55bccd105a97e5e171c290822eab04-394BB.png │ ├── af47db264f598a776eef080a2c7aee22-4D508.png │ ├── apple-touch-icon-192x192-86515.png │ ├── b2680abf1970a250b052bbd6059a1b24-B7522.png │ ├── b4fead77f737aa7840a25e1cd39eb062-CEDEC.png │ ├── b532e9790048be98716684777bb0b3da-248E4.png │ ├── baby-yoda-hi-6F83D.mp4 │ ├── bb9f76664711c9b5009e7a6add580b29-7CFF5.png │ ├── bot-3C182.png │ ├── c4-og-banner-7E00C.png │ ├── c4-og-banner-AC16D.png │ ├── c47d52c806aea627c7b227b287ce8808-40688.png │ ├── c56fa8715ba8664bdbeca68e6a22aa60-EEE9C.png │ ├── c6b85a4a6ca07ab15a30a24f570be5b8-1F210.png │ ├── c6d26a3e68c59bd84c235cce3ad37904-87D0A.png │ ├── c6ddfdbe9d867380007d3fe739a22017-92620.png │ ├── c82b3fa769ed6e6ffdea579381ed5f5c-5A29C.png │ ├── c8582808c3d6e596a73294c8b1ded7e8-7A679.png │ ├── c9cb30134c634c9e02d0c64df4922803-98E33.png │ ├── caddfef873d50dfd002a7267097067d2-607D7.png │ ├── cbe421d8f4629ab519aee7436670f204-DE829.png │ ├── cd830d98142183666c0a4f5a46540368-30316.png │ ├── congrats-congrats-gif-E34E3.mp4 │ ├── crazy-jim-carrey-1748C.mp4 │ ├── d05992162b128265b0f4fd4543b46456-9F835.png │ ├── d2a162ea47f3840acf3a61c2542af236-3CFFE.png │ ├── d352b5d64239648acbeb7b6f310df0b8-E875A.png │ ├── d35a0c87f7f9f5e7c67430ca9593af01-64365.png │ ├── d5be42389ea341d7a8c980f830a2ea27-271A4.png │ ├── d6411e6ba59c11600c691e2d72a71639-F99CD.png │ ├── d97fdd2909353ad7b5ac1b3890e1e928-E60B7.png │ ├── dance-gru-1DC19.mp4 │ ├── ddde630c4ffa00ebee335e58d951bba5-3F2EA.png │ ├── df5db791cacdfbeb4e60dcf34fca9dd2-FFC5D.png │ ├── dfacc77d68962a991f5a4c3b7859b4c2-BAB3E.png │ ├── dont-cry-9E70B.mp4 │ ├── e62e325ddc1b1e595c6c52bb00b320c7-4CF2E.png │ ├── eaffa34638e50dc977da9d0d52a5113a-AE325.png │ ├── eb3d38f0f0262d04db31fc662aa09b2b-16519.png │ ├── ec29e162c99a502f591715e569811ab5-4EBC6.png │ ├── ec906ee29b2bacd49cd7e28a849ef04b-F54DF.png │ ├── ed4484ef66c898526d51a3b65936c2ff-6B4AE.png │ ├── ee6c31750f46b7cd080ab8b84efae1c2-9E926.png │ ├── efc72d9e28a1eacd5ec86918b3dde6cd-8ED8F.png │ ├── era-zkevm_circuits-8B1CA │ ├── f08364e68445246bedff046d83f84fd8-55F65.png │ ├── f158568cfe853b25cfb6a45a23a74224-ADFB7.png │ ├── f34dde41d9b0f33fc69a5d0a082b9bcc-F2F7F.png │ ├── f49d701795e5aa0ae6eb38736a954638-6EE9B.png │ ├── f4f73fc0c2e452cd53ec3b3138883251-C4CDF.png │ ├── f7147bfadb72a2afd2401e5071b39609-7268B.png │ ├── f72c5f6eae5af3197504f447d8d59688-3515E.png │ ├── f8ee3d74786e5ca83e77844ce1b50a9f-E20FE.png │ ├── fd032d1c27ba593b4fbe6be4c074663d-78A1D.png │ ├── fd61dd1a8ad38e5b2b9264a9ef490dd2-D1976.png │ ├── fd6d3757068a5df51317fc7c77a1eb8a-EDE91.png │ ├── fdcd8fcf50b5d50867fb54463cfade81-A71F0.png │ ├── fe9558f335cb8f887866a2c6cd93a6d0-F7F17.png │ ├── fuming-angry-76032.mp4 │ ├── ggsans-italic-400-E988B.woff2 │ ├── ggsans-italic-500-0777F.woff2 │ ├── ggsans-italic-600-CB411.woff2 │ ├── ggsans-italic-700-891AC.woff2 │ ├── ggsans-italic-800-D36B0.woff2 │ ├── ggsans-normal-400-1456D.woff2 │ ├── ggsans-normal-500-89CE5.woff2 │ ├── ggsans-normal-600-C1EA8.woff2 │ ├── ggsans-normal-700-1949A.woff2 │ ├── ggsans-normal-800-58487.woff2 │ ├── hasbulla-money-0551F.mp4 │ ├── highlight.min-D8D27.js │ ├── im-dying-here-man-kyle-mclusky-24340.mp4 │ ├── im-out-goodbye-90C41.mp4 │ ├── image-0CE74.png │ ├── image-17374.png │ ├── image-1FB0D.png │ ├── image-342C1.png │ ├── image-5AF27.png │ ├── image-77A3B.png │ ├── image-92647.png │ ├── image-9C793.png │ ├── image-A2FD1.png │ ├── image-A5AE9.png │ ├── image-B461D.png │ ├── image-EDA54.png │ ├── image-F69BB.png │ ├── image-F9455.png │ ├── image0-600AA.gif │ ├── image0-6F16C.jpg │ ├── imageC4-5B825.png │ ├── itll-be-worth-the-wait-i-promise-78275.mp4 │ ├── lottie.min-99657.js │ ├── me-waiting-for-my-friends-to-get-online-7FE29.mp4 │ ├── money-287B8.mp4 │ ├── monkey-laptop-2CE68.mp4 │ ├── oh-my-god-its-happening-B83F8.mp4 │ ├── sadcat-4F71B.mp4 │ ├── share_image-A9244.png │ ├── shocked-surprised-4A150.mp4 │ ├── shrek-smirk-shrek-horny-39ADF.mp4 │ ├── social-image-1858E.png │ ├── solarized-dark.min-BA98F.css │ ├── spider-man-okay-i-give-up-4EDDD.mp4 │ ├── star-wars-yoda-B4C23.mp4 │ ├── sweating-nervous-6FF7E.mp4 │ ├── sweating-nervous-8C998.mp4 │ ├── tempFileForShare_20231018-132041-7CBB3.jpg │ ├── tempFileForShare_20231018-155443-C31D9.jpg │ ├── tempFileForShare_20231020-191325-E1641.jpg │ ├── tempFileForShare_20231020-191854-BAAE3.jpg │ ├── tempFileForShare_20231020-191945-A91E6.jpg │ ├── tempFileForShare_20231020-192404-0DE6B.jpg │ ├── tenset-10set-70730.mp4 │ ├── thanos-i-finally-rest-D8D7E.mp4 │ ├── titanic-titanic-movie-037CA.mp4 │ ├── waiting-D439C.mp4 │ ├── waiting-waiting-patiently-C4D47.mp4 │ ├── willy-wonka-gene-wilder-FC547.mp4 │ ├── wow-celebration-EC7A1.mp4 │ ├── zksync-era-121D3 │ ├── zksync-era-1ADCF │ ├── zksync-era-BB937 │ └── zksync-web-era-docs-65681 ├── Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt └── Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files │ ├── 39790 │ ├── 57758ce2-ee33-4ff5-900e-004103ce2566-A0609 │ ├── 66-58994 │ ├── 754109474691612782-C3CA7.json │ ├── RPReplay_Final1705454034-1712B.mov │ ├── Screenshot_2023-10-04_at_4.26.48_PM-4F452.png │ ├── Screenshot_2023-10-10_at_12.05.53_PM-C09DA.png │ ├── Screenshot_2023-10-10_at_12.05.59_PM-2701F.png │ ├── Screenshot_2023-10-11_000945-C36B7.png │ ├── Screenshot_2023-10-11_at_4.05.50_PM-BF6BD.png │ ├── Screenshot_2023-10-11_at_9.50.33_AM-C3A58.png │ ├── Screenshot_667-34FDD.png │ ├── Screenshot_670-0C713.png │ ├── WX20231020-1150572x-0A9AD.png │ ├── baby-yoda-hi-12441.png │ ├── bot-3C182.png │ ├── c4-og-banner-7E00C.png │ ├── c4-og-banner-AC16D.png │ ├── congrats-congrats-gif-AFEFC.png │ ├── crazy-jim-carrey-7A320.png │ ├── dance-gru-009C1.png │ ├── dont-cry-93595.png │ ├── era-zkevm_circuits-8B1CA │ ├── fuming-angry-18362.png │ ├── hasbulla-money-22B63.png │ ├── im-dying-here-man-kyle-mclusky-EB4B4.png │ ├── im-out-goodbye-C41C0.png │ ├── image-0CE74.png │ ├── image-17374.png │ ├── image-1FB0D.png │ ├── image-342C1.png │ ├── image-5AF27.png │ ├── image-77A3B.png │ ├── image-92647.png │ ├── image-9C793.png │ ├── image-A2FD1.png │ ├── image-A5AE9.png │ ├── image-B461D.png │ ├── image-EDA54.png │ ├── image-F69BB.png │ ├── image-F9455.png │ ├── image0-600AA.gif │ ├── image0-6F16C.jpg │ ├── imageC4-5B825.png │ ├── itll-be-worth-the-wait-i-promise-B76D9.png │ ├── me-waiting-for-my-friends-to-get-online-3049B.png │ ├── money-75FE4.png │ ├── monkey-laptop-6D6FD.png │ ├── oh-my-god-its-happening-43B31.png │ ├── sadcat-57838.png │ ├── share_image-A9244.png │ ├── shocked-surprised-72FCB.png │ ├── shrek-smirk-shrek-horny-3B1BC.png │ ├── social-image-1858E.png │ ├── spider-man-okay-i-give-up-B8229.png │ ├── star-wars-yoda-85920.png │ ├── sweating-nervous-0BAD9.png │ ├── sweating-nervous-3FA35.png │ ├── tempFileForShare_20231018-132041-7CBB3.jpg │ ├── tempFileForShare_20231018-155443-C31D9.jpg │ ├── tempFileForShare_20231020-191325-E1641.jpg │ ├── tempFileForShare_20231020-191854-BAAE3.jpg │ ├── tempFileForShare_20231020-191945-A91E6.jpg │ ├── tempFileForShare_20231020-192404-0DE6B.jpg │ ├── tenset-10set-A161B.png │ ├── thanos-i-finally-rest-F18B9.png │ ├── titanic-titanic-movie-16C12.png │ ├── waiting-837D1.png │ ├── waiting-waiting-patiently-C8F8A.png │ ├── willy-wonka-gene-wilder-8CBB3.png │ ├── wow-celebration-0C373.png │ ├── zksync-era-121D3 │ ├── zksync-era-1ADCF │ ├── zksync-era-BB937 │ └── zksync-web-era-docs-65681 └── docs ├── Circuits Section ├── Boojum function check_if_satisfied.md ├── Boojum function check_if_satisfied │ ├── Check_if_satisfied(1).png │ ├── Check_if_satisfied(11).png │ ├── Check_if_satisfied(12).png │ ├── Check_if_satisfied(13).png │ ├── Check_if_satisfied(14).png │ ├── Check_if_satisfied(16).png │ ├── Check_if_satisfied(17).png │ ├── Check_if_satisfied(2).png │ ├── Check_if_satisfied(3).png │ ├── Check_if_satisfied(4).png │ ├── Check_if_satisfied(7).png │ ├── Check_if_satisfied(8).png │ ├── Check_if_satisfied(9).png │ └── Check_if_satisfied.png ├── Boojum gadgets.md ├── Circuit testing.md ├── Circuit testing │ ├── Contest(10).png │ ├── Contest(11).png │ ├── Contest(12).png │ ├── Contest(4).png │ ├── Contest(5).png │ ├── Contest(6).png │ ├── Contest(7).png │ ├── Contest(8).png │ └── Contest(9).png ├── Circuits.md ├── Circuits │ ├── CodeDecommitter.md │ ├── DemuxLogQueue.md │ ├── Ecrecover.md │ ├── KeccakRoundFunction.md │ ├── L1MessagesHasher.md │ ├── LogSorter.md │ ├── Main Vm.md │ ├── RAMPermutation.md │ ├── Sha256RoundFunction.md │ ├── SortDecommitments.md │ ├── SortDecommitments │ │ └── Sorting and deduplicating.md │ ├── Sorting.md │ ├── StorageApplication.md │ ├── StorageSorter.md │ ├── diagram.png │ ├── flowchart.png │ └── image.png ├── Getting Started.md ├── Intro to zkSync’s ZK.md ├── Intro to zkSync’s ZK │ └── circuit.png └── ZK Terminology.md ├── Smart contract Section ├── Batches & L2 blocks on zkSync.md ├── Elliptic curve precompiles.md ├── Handling L1→L2 ops on zkSync.md ├── Handling pubdata in Boojum.md ├── Handling pubdata in Boojum │ ├── L2→L1 communication before Boojum.md │ └── State diff compression v1 spec.md ├── L1 smart contracts.md ├── L1 smart contracts │ ├── diamondProxy.jpg │ └── governance.jpg ├── System contracts bootloader description.md └── zkSync fee model.md └── VM Section ├── EraVM Formal specification.pdf ├── How compiler works ├── code_separation.md ├── evmla_translator.md ├── exception_handling.md ├── instructions │ ├── evm │ │ ├── arithmetic.md │ │ ├── bitwise.md │ │ ├── block.md │ │ ├── call.md │ │ ├── create.md │ │ ├── environment.md │ │ ├── logging.md │ │ ├── logical.md │ │ ├── memory.md │ │ ├── overview.md │ │ ├── return.md │ │ ├── sha3.md │ │ └── stack.md │ ├── evmla.md │ ├── extensions │ │ ├── call.md │ │ ├── overview.md │ │ └── verbatim.md │ ├── overview.md │ └── yul.md ├── overview.md └── system_contracts.md ├── ZkSync Era Virtual Machine primer.md └── zkSync Era VM primer ├── arch-overview.png └── arithmetic_opcode.png /code/contracts/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | tools/target 3 | tools/data/Verifier.sol -------------------------------------------------------------------------------- /code/contracts/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "ethereum/lib/forge-std"] 2 | path = ethereum/lib/forge-std 3 | url = https://github.com/foundry-rs/forge-std 4 | -------------------------------------------------------------------------------- /code/contracts/ethereum/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | charset = utf-8 3 | end_of_line = lf 4 | insert_final_newline = true 5 | trim_trailing_whitespace = true 6 | 7 | [*.sol] 8 | indent_style = space 9 | indent_size = 4 10 | -------------------------------------------------------------------------------- /code/contracts/ethereum/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /artifacts 3 | /cache 4 | /typechain 5 | node_modules 6 | ./contracts/DS_Store 7 | /artifacts-forge 8 | /cache-forge 9 | -------------------------------------------------------------------------------- /code/contracts/ethereum/.nvmrc: -------------------------------------------------------------------------------- 1 | v18.18.0 2 | -------------------------------------------------------------------------------- /code/contracts/ethereum/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["prettier-plugin-solidity"], 3 | "overrides": [ 4 | { 5 | "files": "*.sol", 6 | "options": { 7 | "parser": "solidity-parse", 8 | "printWidth": 120, 9 | "tabWidth": 4, 10 | "useTabs": false, 11 | "singleQuote": false, 12 | "bracketSpacing": false 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /code/contracts/ethereum/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "editorconfig.editorconfig", 4 | "esbenp.prettier-vscode", 5 | "nomicfoundation.hardhat-solidity" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /code/contracts/ethereum/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.defaultFormatter": "esbenp.prettier-vscode", 3 | "editor.formatOnSave": true, 4 | "prettier.documentSelectors": ["**/*.sol"], 5 | "solidity.formatter": "prettier" 6 | } 7 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/bridge/interfaces/IL1BridgeLegacy.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | /// @author Matter Labs 6 | interface IL1BridgeLegacy { 7 | function deposit( 8 | address _l2Receiver, 9 | address _l1Token, 10 | uint256 _amount, 11 | uint256 _l2TxGasLimit, 12 | uint256 _l2TxGasPerPubdataByte 13 | ) external payable returns (bytes32 txHash); 14 | } 15 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/bridge/interfaces/IL2ERC20Bridge.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | /// @author Matter Labs 6 | interface IL2ERC20Bridge { 7 | function initialize( 8 | address _l1Bridge, 9 | bytes32 _l2TokenProxyBytecodeHash, 10 | address _governor 11 | ) external; 12 | } 13 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/bridge/interfaces/IL2WethBridge.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | interface IL2WethBridge { 6 | function initialize( 7 | address _l1Bridge, 8 | address _l1WethAddress, 9 | address _l2WethAddress 10 | ) external; 11 | } 12 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/bridge/interfaces/IWETH9.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: Apache-2.0 2 | pragma solidity ^0.8.0; 3 | 4 | interface IWETH9 { 5 | function deposit() external payable; 6 | 7 | function withdraw(uint256 wad) external; 8 | } 9 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/common/AllowListed.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | import "./interfaces/IAllowList.sol"; 6 | 7 | /// @author Matter Labs 8 | /// @custom:security-contact security@matterlabs.dev 9 | abstract contract AllowListed { 10 | modifier senderCanCallFunction(IAllowList _allowList) { 11 | // Preventing the stack too deep error 12 | { 13 | require(_allowList.canCall(msg.sender, address(this), msg.sig), "nr"); 14 | } 15 | _; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/common/Dependencies.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol"; 6 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/ConstructorForwarder.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | contract ConstructorForwarder { 6 | constructor(address to, bytes memory data) payable { 7 | (bool success, ) = payable(to).call{value: msg.value}(data); 8 | require(success); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/EventOnFallback.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | contract EventOnFallback { 6 | event Called(address msgSender, uint256 value, bytes data); 7 | 8 | fallback() external payable { 9 | emit Called(msg.sender, msg.value, msg.data); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/Forwarder.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | contract Forwarder { 6 | function forward(address to, bytes calldata data) external payable returns (bytes memory returnValue) { 7 | bool success; 8 | (success, returnValue) = payable(to).call{value: msg.value}(data); 9 | require(success); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/ReturnSomething.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | contract ReturnSomething { 6 | fallback() external payable { 7 | assembly { 8 | return(0, 0x20) 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/RevertFallback.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | contract RevertFallback { 6 | fallback() external payable { 7 | revert(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/test/DiamondCutTestContract.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | import "../../zksync/libraries/Diamond.sol"; 6 | import "../../zksync/facets/Getters.sol"; 7 | 8 | contract DiamondCutTestContract is GettersFacet { 9 | function diamondCut(Diamond.DiamondCutData memory _diamondCut) external { 10 | Diamond.diamondCut(_diamondCut); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/test/DiamondProxyTest.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | import "../../zksync/libraries/Diamond.sol"; 6 | import "../../zksync/facets/Base.sol"; 7 | 8 | contract DiamondProxyTest is Base { 9 | function setFreezability(bool _freeze) external returns (bytes32) { 10 | Diamond.DiamondStorage storage diamondStorage = Diamond.getDiamondStorage(); 11 | diamondStorage.isFrozen = _freeze; 12 | return Diamond.DIAMOND_INIT_SUCCESS_RETURN_VALUE; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/test/DummyERC20NoTransferReturnValue.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | contract DummyERC20NoTransferReturnValue { 6 | function transfer(address recipient, uint256 amount) external {} 7 | } 8 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/test/MerkleTest.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | import "../../zksync/libraries/Merkle.sol"; 6 | 7 | contract MerkleTest { 8 | function calculateRoot( 9 | bytes32[] calldata _path, 10 | uint256 _index, 11 | bytes32 _itemHash 12 | ) external pure returns (bytes32) { 13 | return Merkle.calculateRoot(_path, _index, _itemHash); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/dev-contracts/test/MockExecutor.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | import "../../zksync/facets/Base.sol"; 6 | 7 | contract MockExecutorFacet is Base { 8 | function saveL2LogsRootHash(uint256 _batchNumber, bytes32 _l2LogsTreeRoot) external { 9 | s.totalBatchesExecuted = _batchNumber; 10 | s.l2LogsRootHashes[_batchNumber] = _l2LogsTreeRoot; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/zksync/interfaces/IBase.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: UNLICENSED 2 | pragma solidity ^0.8.0; 3 | 4 | interface IBase { 5 | function getName() external view returns (string memory); 6 | } 7 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/zksync/interfaces/IVerifier.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | interface IVerifier { 6 | function verify( 7 | uint256[] calldata _publicInputs, 8 | uint256[] calldata _proof, 9 | uint256[] calldata _recursiveAggregationInput 10 | ) external view returns (bool); 11 | 12 | function verificationKeyHash() external pure returns (bytes32); 13 | } 14 | -------------------------------------------------------------------------------- /code/contracts/ethereum/contracts/zksync/interfaces/IZkSync.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.13; 4 | 5 | import "./IMailbox.sol"; 6 | import "./IAdmin.sol"; 7 | import "./IExecutor.sol"; 8 | import "./IGetters.sol"; 9 | 10 | interface IZkSync is IMailbox, IAdmin, IExecutor, IGetters {} 11 | -------------------------------------------------------------------------------- /code/contracts/ethereum/foundry.toml: -------------------------------------------------------------------------------- 1 | [profile.default] 2 | src = 'cache/solpp-generated-contracts' 3 | out = 'artifacts-forge' 4 | libs = ['node_modules', 'lib'] 5 | cache_path = 'cache-forge' 6 | test = 'test/foundry' 7 | 8 | # See more config options https://github.com/foundry-rs/foundry/tree/master/config 9 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | .vscode 4 | .idea 5 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lib/ds-test"] 2 | path = lib/ds-test 3 | url = https://github.com/dapphub/ds-test 4 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/lib/ds-test/.gitignore: -------------------------------------------------------------------------------- 1 | /.dapple 2 | /build 3 | /out 4 | /cache/ 5 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/lib/ds-test/Makefile: -------------------------------------------------------------------------------- 1 | all:; dapp build 2 | 3 | test: 4 | -dapp --use solc:0.4.23 build 5 | -dapp --use solc:0.4.26 build 6 | -dapp --use solc:0.5.17 build 7 | -dapp --use solc:0.6.12 build 8 | -dapp --use solc:0.7.5 build 9 | 10 | demo: 11 | DAPP_SRC=demo dapp --use solc:0.7.5 build 12 | -hevm dapp-test --verbose 3 13 | 14 | .PHONY: test demo 15 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/lib/ds-test/default.nix: -------------------------------------------------------------------------------- 1 | { solidityPackage, dappsys }: solidityPackage { 2 | name = "ds-test"; 3 | src = ./src; 4 | } 5 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/lib/ds-test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ds-test", 3 | "version": "1.0.0", 4 | "description": "Assertions, equality checks and other test helpers ", 5 | "bugs": "https://github.com/dapphub/ds-test/issues", 6 | "license": "GPL-3.0", 7 | "author": "Contributors to ds-test", 8 | "files": [ 9 | "src/*" 10 | ], 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/dapphub/ds-test.git" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/test/compilation/CompilationScript.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | pragma solidity >=0.6.2 <0.9.0; 3 | 4 | pragma experimental ABIEncoderV2; 5 | 6 | import "../../src/Script.sol"; 7 | 8 | // The purpose of this contract is to benchmark compilation time to avoid accidentally introducing 9 | // a change that results in very long compilation times with via-ir. See https://github.com/foundry-rs/forge-std/issues/207 10 | contract CompilationScript is Script {} 11 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/test/compilation/CompilationScriptBase.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | pragma solidity >=0.6.2 <0.9.0; 3 | 4 | pragma experimental ABIEncoderV2; 5 | 6 | import "../../src/Script.sol"; 7 | 8 | // The purpose of this contract is to benchmark compilation time to avoid accidentally introducing 9 | // a change that results in very long compilation times with via-ir. See https://github.com/foundry-rs/forge-std/issues/207 10 | contract CompilationScriptBase is ScriptBase {} 11 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/test/compilation/CompilationTest.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | pragma solidity >=0.6.2 <0.9.0; 3 | 4 | pragma experimental ABIEncoderV2; 5 | 6 | import "../../src/Test.sol"; 7 | 8 | // The purpose of this contract is to benchmark compilation time to avoid accidentally introducing 9 | // a change that results in very long compilation times with via-ir. See https://github.com/foundry-rs/forge-std/issues/207 10 | contract CompilationTest is Test {} 11 | -------------------------------------------------------------------------------- /code/contracts/ethereum/lib/forge-std/test/compilation/CompilationTestBase.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | pragma solidity >=0.6.2 <0.9.0; 3 | 4 | pragma experimental ABIEncoderV2; 5 | 6 | import "../../src/Test.sol"; 7 | 8 | // The purpose of this contract is to benchmark compilation time to avoid accidentally introducing 9 | // a change that results in very long compilation times with via-ir. See https://github.com/foundry-rs/forge-std/issues/207 10 | contract CompilationTestBase is TestBase {} 11 | -------------------------------------------------------------------------------- /code/contracts/ethereum/remappings.txt: -------------------------------------------------------------------------------- 1 | @ensdomains/=node_modules/@ensdomains/ 2 | @openzeppelin/=node_modules/@openzeppelin/ 3 | ds-test/=lib/forge-std/lib/ds-test/src/ 4 | eth-gas-reporter/=node_modules/eth-gas-reporter/ 5 | forge-std/=lib/forge-std/src/ 6 | hardhat/=node_modules/hardhat/ 7 | -------------------------------------------------------------------------------- /code/contracts/ethereum/test/foundry/unit/concrete/AllowList/AccessMode/_AccessMode_Shared.t.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.17; 4 | 5 | import {AllowListTest} from "../_AllowList_Shared.t.sol"; 6 | 7 | contract AccessModeTest is AllowListTest { 8 | address internal target = 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045; 9 | bytes4 internal functionSig = 0xdeadbeaf; 10 | } 11 | -------------------------------------------------------------------------------- /code/contracts/ethereum/test/foundry/unit/concrete/AllowList/Permission/_Permission_Shared.t.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.17; 4 | 5 | import {AllowListTest} from "../_AllowList_Shared.t.sol"; 6 | 7 | contract PermissionTest is AllowListTest { 8 | address internal target = 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045; 9 | bytes4 internal functionSig = 0x1626ba7e; 10 | } 11 | -------------------------------------------------------------------------------- /code/contracts/ethereum/test/foundry/unit/concrete/Bridge/L1WethBridge/ClaimFailedDeposit.t.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.17; 4 | 5 | import {L1WethBridgeTest} from "./_L1WethBridge_Shared.t.sol"; 6 | 7 | contract ClaimFailedDepositTest is L1WethBridgeTest { 8 | function test_RevertWhen_Claiming() public { 9 | vm.expectRevert("Method not supported. Failed deposit funds are sent to the L2 refund recipient address."); 10 | bridgeProxy.claimFailedDeposit(address(0), address(0), bytes32(0), 0, 0, 0, new bytes32[](0)); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /code/contracts/ethereum/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "types": [ 4 | "node", 5 | "mocha" 6 | ], 7 | "downlevelIteration": true, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /code/contracts/ethereum/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultSeverity": "warn", 3 | "extends": [ 4 | "tslint:recommended" 5 | ], 6 | "jsRules": {}, 7 | "rules": { 8 | "no-console": false 9 | }, 10 | "rulesDirectory": [] 11 | } 12 | -------------------------------------------------------------------------------- /code/contracts/tools/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "zksync_verifier_contract_generator" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | [dependencies] 7 | serde_derive = "1.0" 8 | serde_json = "1.0" 9 | lazy_static = "1.4" 10 | structopt = "0.3.26" 11 | handlebars = "4.4.0" 12 | -------------------------------------------------------------------------------- /code/contracts/tools/README.md: -------------------------------------------------------------------------------- 1 | # Tool for generating `Verifier.sol` using json Verification key 2 | 3 | `cargo run --bin zksync_verifier_contract_generator --release -- --input_path /path/to/scheduler_verification_key.json --output_path /path/to/Verifier.sol` 4 | -------------------------------------------------------------------------------- /code/contracts/tools/rust-toolchain: -------------------------------------------------------------------------------- 1 | 1.72.0 2 | -------------------------------------------------------------------------------- /code/contracts/zksync/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /artifacts 3 | /artifacts-zk 4 | /cache 5 | /cache-zk 6 | /typechain 7 | node_modules 8 | ./contracts/DS_Store 9 | -------------------------------------------------------------------------------- /code/contracts/zksync/.nvmrc: -------------------------------------------------------------------------------- 1 | v18.18.0 2 | -------------------------------------------------------------------------------- /code/contracts/zksync/.solhint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "solhint:default", 3 | "plugins": ["prettier"], 4 | "rules": { 5 | "prettier/prettier": "error", 6 | "no-inline-assembly": false 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /code/contracts/zksync/contracts/Dependencies.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol"; 6 | -------------------------------------------------------------------------------- /code/contracts/zksync/contracts/bridge/interfaces/IL1Bridge.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | /// @author Matter Labs 6 | interface IL1Bridge { 7 | function finalizeWithdrawal( 8 | uint256 _l2BatchNumber, 9 | uint256 _l2MessageIndex, 10 | uint16 _l2TxNumberInBatch, 11 | bytes calldata _message, 12 | bytes32[] calldata _merkleProof 13 | ) external; 14 | } 15 | -------------------------------------------------------------------------------- /code/contracts/zksync/contracts/bridge/interfaces/IL2Weth.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | pragma solidity ^0.8.0; 3 | 4 | interface IL2Weth { 5 | event Initialize(string name, string symbol, uint8 decimals); 6 | 7 | function deposit() external payable; 8 | 9 | function withdraw(uint256 _amount) external; 10 | 11 | function depositTo(address _to) external payable; 12 | 13 | function withdrawTo(address _to, uint256 _amount) external; 14 | } 15 | -------------------------------------------------------------------------------- /code/contracts/zksync/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "types": [ 4 | "node", 5 | "mocha", 6 | ], 7 | "downlevelIteration": true, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /code/contracts/zksync/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultSeverity": "warn", 3 | "extends": [ 4 | "tslint:recommended" 5 | ], 6 | "jsRules": {}, 7 | "rules": { 8 | "no-console": false 9 | }, 10 | "rulesDirectory": [] 11 | } 12 | -------------------------------------------------------------------------------- /code/era-zk_evm/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /code/era-zk_evm/src/block_properties/mod.rs: -------------------------------------------------------------------------------- 1 | use super::*; 2 | 3 | #[derive(Clone, Copy, Debug, PartialEq, Eq)] 4 | pub struct BlockProperties { 5 | pub default_aa_code_hash: U256, 6 | pub zkporter_is_available: bool, 7 | } 8 | -------------------------------------------------------------------------------- /code/era-zk_evm/src/errors/mod.rs: -------------------------------------------------------------------------------- 1 | #[derive(Clone, Copy, Debug)] 2 | pub enum OpcodeDecodingError { 3 | UnknownOpcode, 4 | EncodingIsTooLong, 5 | } 6 | 7 | impl std::fmt::Display for OpcodeDecodingError { 8 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { 9 | write!(f, "{:?}", self) 10 | } 11 | } 12 | 13 | impl std::error::Error for OpcodeDecodingError {} 14 | -------------------------------------------------------------------------------- /code/era-zk_evm/src/opcodes/execution/mod.rs: -------------------------------------------------------------------------------- 1 | use super::*; 2 | use crate::vm_state::*; 3 | use zkevm_opcode_defs::decoding::AllowedPcOrImm; 4 | use zkevm_opcode_defs::decoding::VmEncodingMode; 5 | 6 | pub mod add; 7 | pub mod binop; 8 | pub mod context; 9 | pub mod div; 10 | pub mod far_call; 11 | pub mod jump; 12 | pub mod log; 13 | pub mod mul; 14 | pub mod near_call; 15 | pub mod noop; 16 | pub mod ptr; 17 | pub mod ret; 18 | pub mod shift; 19 | pub mod sub; 20 | pub mod uma; 21 | -------------------------------------------------------------------------------- /code/era-zk_evm/src/opcodes/mod.rs: -------------------------------------------------------------------------------- 1 | use super::*; 2 | 3 | pub mod execution; 4 | pub mod parsing; 5 | 6 | pub use self::parsing::*; 7 | -------------------------------------------------------------------------------- /code/era-zk_evm/src/reference_impls/mod.rs: -------------------------------------------------------------------------------- 1 | use super::*; 2 | 3 | use std::collections::HashMap; 4 | 5 | pub mod decommitter; 6 | pub mod event_sink; 7 | pub mod memory; 8 | -------------------------------------------------------------------------------- /code/era-zk_evm/src/testing/tests/precompiles/mod.rs: -------------------------------------------------------------------------------- 1 | use super::*; 2 | 3 | mod keccak256; 4 | mod sha256; 5 | mod ecrecover; 6 | 7 | fn pretty_print_memory_dump(content: &Vec<[u8; 32]>, range: std::ops::Range) { 8 | println!("Memory dump:"); 9 | println!("-----------------------------------------"); 10 | for (cont, index) in content.into_iter().zip(range.into_iter()) { 11 | println!("{:04x}: 0x{}", index, hex::encode(cont)); 12 | } 13 | println!("-----------------------------------------"); 14 | } -------------------------------------------------------------------------------- /code/era-zk_evm/src/vm_state/aux_data.rs: -------------------------------------------------------------------------------- 1 | use super::*; 2 | 3 | #[derive(Debug, Clone)] 4 | pub struct AuxDataHolder> { 5 | pub empty_hash_port: AlgebraicHashPort, 6 | pub hash_and_ports_round_function: R, 7 | } -------------------------------------------------------------------------------- /code/era-zkevm_circuits/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | .idea 4 | -------------------------------------------------------------------------------- /code/era-zkevm_circuits/cs_derive/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | .idea/ 4 | -------------------------------------------------------------------------------- /code/era-zkevm_circuits/cs_derive/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "cs_derive" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | syn = { version = "1.0.*", features = ["extra-traits", "printing"]} 10 | quote = {version = "1.0.*"} 11 | proc-macro2 = "1" 12 | proc-macro-error = "1" 13 | 14 | [lib] 15 | proc-macro = true -------------------------------------------------------------------------------- /code/era-zkevm_circuits/cs_derive/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/code/era-zkevm_circuits/cs_derive/src/.DS_Store -------------------------------------------------------------------------------- /code/era-zkevm_circuits/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" -------------------------------------------------------------------------------- /code/era-zkevm_circuits/rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 100 -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/code/era-zkevm_circuits/src/.DS_Store -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/base_structures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/code/era-zkevm_circuits/src/base_structures/.DS_Store -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/base_structures/mod.rs: -------------------------------------------------------------------------------- 1 | use boojum::field::SmallField; 2 | use boojum::{cs::traits::cs::ConstraintSystem, gadgets::u8::UInt8}; 3 | 4 | use super::*; 5 | 6 | pub mod decommit_query; 7 | pub mod log_query; 8 | pub mod memory_query; 9 | pub mod recursion_query; 10 | pub mod register; 11 | pub mod vm_state; 12 | 13 | pub mod precompile_input_outputs; 14 | pub mod state_diff_record; 15 | 16 | pub trait ByteSerializable { 17 | fn into_bytes>(&self, cs: &mut CS) -> [UInt8; N]; 18 | } 19 | -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/config.rs: -------------------------------------------------------------------------------- 1 | #[cfg(feature = "verbose_circuits")] 2 | pub const CIRCUIT_VERSOBE: bool = true; 3 | 4 | #[cfg(not(feature = "verbose_circuits"))] 5 | pub const CIRCUIT_VERSOBE: bool = false; 6 | -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/ecrecover/secp256k1/fq.rs: -------------------------------------------------------------------------------- 1 | use boojum::pairing::ff::*; 2 | 3 | // base field, Q = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F 4 | #[derive(PrimeField)] 5 | #[PrimeFieldModulus = "115792089237316195423570985008687907853269984665640564039457584007908834671663"] 6 | #[PrimeFieldGenerator = "2"] 7 | pub struct Fq(FqRepr); 8 | -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/ecrecover/secp256k1/fr.rs: -------------------------------------------------------------------------------- 1 | use boojum::pairing::ff::*; 2 | 3 | // base field, R = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 4 | #[derive(PrimeField)] 5 | #[PrimeFieldModulus = "115792089237316195423570985008687907852837564279074904382605163141518161494337"] 6 | #[PrimeFieldGenerator = "2"] 7 | pub struct Fr(FrRepr); 8 | -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/fsm_input_output/circuit_inputs/mod.rs: -------------------------------------------------------------------------------- 1 | use super::*; 2 | use boojum::cs::Variable; 3 | 4 | pub const INPUT_OUTPUT_COMMITMENT_LENGTH: usize = 4; 5 | 6 | pub mod main_vm; 7 | -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/recursion/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/code/era-zkevm_circuits/src/recursion/.DS_Store -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/recursion/mod.rs: -------------------------------------------------------------------------------- 1 | use super::*; 2 | 3 | pub mod compression; 4 | pub mod interblock; 5 | pub mod leaf_layer; 6 | pub mod node_layer; 7 | 8 | pub const VK_COMMITMENT_LENGTH: usize = 4; 9 | pub const NUM_BASE_LAYER_CIRCUITS: usize = 13; 10 | -------------------------------------------------------------------------------- /code/era-zkevm_circuits/src/tables/mod.rs: -------------------------------------------------------------------------------- 1 | use derivative::*; 2 | 3 | pub mod bitshift; 4 | pub mod conditional; 5 | pub mod integer_to_boolean_mask; 6 | pub mod opcodes_decoding; 7 | pub mod uma_ptr_read_cleanup; 8 | 9 | pub use self::bitshift::*; 10 | pub use self::conditional::*; 11 | pub use self::integer_to_boolean_mask::*; 12 | pub use self::opcodes_decoding::*; 13 | pub use self::uma_ptr_read_cleanup::*; 14 | -------------------------------------------------------------------------------- /code/system-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | cache 3 | artifacts 4 | cache-zk 5 | artifacts-zk 6 | typechain-types 7 | typechain 8 | build 9 | yarn-debug.log* 10 | yarn-error.log* 11 | -------------------------------------------------------------------------------- /code/system-contracts/bootloader/tests/dummy.yul: -------------------------------------------------------------------------------- 1 | // A really basic test that only sets one memory cell to 1. 2 | object "Bootloader" { 3 | code { 4 | } 5 | object "Bootloader_deployed" { 6 | code { 7 | let DUMMY_TEST_CELL := 0x00 8 | let DUMMY_TEST_VALUE := 0x123123123 9 | mstore(DUMMY_TEST_CELL, DUMMY_TEST_VALUE) 10 | // Need to return. Otherwise, the compiler will optimize out 11 | // the mstore 12 | return(0,32) 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/EmptyContract.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | /** 6 | * @author Matter Labs 7 | * @custom:security-contact security@matterlabs.dev 8 | * @notice The "empty" contract that is put into some system contracts by default. 9 | * @dev The bytecode of the contract is set by default for all addresses for which no other bytecodes are deployed. 10 | */ 11 | contract EmptyContract { 12 | fallback() external payable {} 13 | 14 | receive() external payable {} 15 | } 16 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/interfaces/IBootloaderUtilities.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | import "../libraries/TransactionHelper.sol"; 6 | 7 | interface IBootloaderUtilities { 8 | function getTransactionHashes( 9 | Transaction calldata _transaction 10 | ) external view returns (bytes32 txHash, bytes32 signedTxHash); 11 | } 12 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/interfaces/IComplexUpgrader.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | interface IComplexUpgrader { 6 | function upgrade(address _delegateTo, bytes calldata _calldata) external payable; 7 | } 8 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/interfaces/IImmutableSimulator.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | struct ImmutableData { 6 | uint256 index; 7 | bytes32 value; 8 | } 9 | 10 | interface IImmutableSimulator { 11 | function getImmutable(address _dest, uint256 _index) external view returns (bytes32); 12 | 13 | function setImmutables(address _dest, ImmutableData[] calldata _immutables) external; 14 | } 15 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/interfaces/IKnownCodesStorage.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | interface IKnownCodesStorage { 6 | event MarkedAsKnown(bytes32 indexed bytecodeHash, bool indexed sendBytecodeToL1); 7 | 8 | function markFactoryDeps(bool _shouldSendToL1, bytes32[] calldata _hashes) external; 9 | 10 | function markBytecodeAsPublished(bytes32 _bytecodeHash) external; 11 | 12 | function getMarker(bytes32 _hash) external view returns (uint256); 13 | } 14 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/interfaces/IMailbox.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | interface IMailbox { 6 | function finalizeEthWithdrawal( 7 | uint256 _l2BatchNumber, 8 | uint256 _l2MessageIndex, 9 | uint16 _l2TxNumberInBlock, 10 | bytes calldata _message, 11 | bytes32[] calldata _merkleProof 12 | ) external; 13 | } 14 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/test-contracts/Callable.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | contract Callable { 6 | event Called(uint256 value, bytes data); 7 | 8 | fallback() external payable { 9 | uint256 len; 10 | assembly { 11 | len := calldatasize() 12 | } 13 | bytes memory data = new bytes(len); 14 | assembly { 15 | calldatacopy(add(data, 0x20), 0, len) 16 | } 17 | emit Called(msg.value, data); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/test-contracts/Deployable.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | contract Deployable { 6 | event Deployed(uint256 value, bytes data); 7 | 8 | constructor() payable { 9 | uint256 len; 10 | assembly { 11 | len := codesize() 12 | } 13 | bytes memory data = new bytes(len); 14 | assembly { 15 | codecopy(add(data, 0x20), 0, len) 16 | } 17 | emit Deployed(msg.value, data); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/test-contracts/DummyUpgrade.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | contract DummyUpgrade { 6 | event Upgraded(); 7 | 8 | function performUpgrade() public { 9 | emit Upgraded(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/test-contracts/MockERC20Approve.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | contract MockERC20Approve { 6 | event Approved(address to, uint256 value); 7 | 8 | function approve(address spender, uint256 value) external returns (bool) { 9 | emit Approved(spender, value); 10 | return true; 11 | } 12 | 13 | function allowance(address owner, address spender) external view returns (uint256) { 14 | return 0; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /code/system-contracts/contracts/test-contracts/MockL1Messenger.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.0; 4 | 5 | contract MockL1Messenger { 6 | event MockBytecodeL1Published(bytes32 indexed bytecodeHash); 7 | 8 | function requestBytecodeL1Publication(bytes32 _bytecodeHash) external { 9 | emit MockBytecodeL1Published(_bytecodeHash); 10 | } 11 | 12 | // To prevent failing during calls from the bootloader 13 | function sendToL1(bytes calldata) external returns (bytes32) { 14 | return bytes32(0); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /code/system-contracts/prettier.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "printWidth": 120, 3 | "tabWidth": 4, 4 | "useTabs": false, 5 | "singleQuote": false, 6 | "bracketSpacing": false, 7 | "explicitTypes": "always" 8 | }; 9 | -------------------------------------------------------------------------------- /code/system-contracts/scripts/quick-setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # install rust 4 | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh 5 | 6 | rustup toolchain install nightly 7 | 8 | # install era-test-node 9 | cargo +nightly install --git https://github.com/matter-labs/era-test-node.git --locked --branch boojum-integration 10 | 11 | yarn 12 | yarn build 13 | yarn preprocess && yarn compile-yul 14 | era_test_node run > /dev/null 2>&1 & export TEST_NODE_PID=$! 15 | yarn test 16 | kill $TEST_NODE_PID 17 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0-EB806.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0-EB806.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/011e27ae06cfaee10f00c0453a586695-221B1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/011e27ae06cfaee10f00c0453a586695-221B1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/01bc15fca097d7ebd27815146d19cad0-EDCFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/01bc15fca097d7ebd27815146d19cad0-EDCFF.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/01d0132cd2bda8d75d0f816ce712f8b5-23A0D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/01d0132cd2bda8d75d0f816ce712f8b5-23A0D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/01fe66bc1531b9b6fdd9f09f90bcbd2e-502DF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/01fe66bc1531b9b6fdd9f09f90bcbd2e-502DF.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/02410a37de8a54f8cfb7a8842a2dd162-D2755.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/02410a37de8a54f8cfb7a8842a2dd162-D2755.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/031b7a5f3d262cf2bc59a7a43169a769-805B9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/031b7a5f3d262cf2bc59a7a43169a769-805B9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0473983eb60155e816c3a2e070dcd889-A67D3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0473983eb60155e816c3a2e070dcd889-A67D3.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/049983139ea262a4e388c5132423e557-7C91D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/049983139ea262a4e388c5132423e557-7C91D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/08a051c6ef73c89fd5967637cbbb4acd-9A9A6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/08a051c6ef73c89fd5967637cbbb4acd-9A9A6.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0ab6fddedfdca4dee0b54ab41ab4faad-3EFDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0ab6fddedfdca4dee0b54ab41ab4faad-3EFDA.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0b57a4cd1eac7593076c69120770f939-ED546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0b57a4cd1eac7593076c69120770f939-ED546.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0c3c3320c3e6aa3a03d03ef4431a326d-9E1E9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0c3c3320c3e6aa3a03d03ef4431a326d-9E1E9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0cd316a9fd5f98cba6c91f10f010ad96-01BB3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0cd316a9fd5f98cba6c91f10f010ad96-01BB3.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0e5b3c84382435322161f927b720d8f6-5CB49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/0e5b3c84382435322161f927b720d8f6-5CB49.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1-B2132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1-B2132.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1080667809002037320-8957D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1080667809002037320-8957D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1083068685914214490-81D5F.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1083068685914214490-81D5F.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1083068770823721071-EE4F6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1083068770823721071-EE4F6.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1093375808028016691-4DA23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1093375808028016691-4DA23.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/10de6881627ed3174e3cce7b3cc76488-95324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/10de6881627ed3174e3cce7b3cc76488-95324.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1110201692663857255-A8E42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1110201692663857255-A8E42.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1174022411507728384-E1D4C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1174022411507728384-E1D4C.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/12ab2a0008c986abd3d75b8d8d4e74d4-CD94C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/12ab2a0008c986abd3d75b8d8d4e74d4-CD94C.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/134a97341ef016a343ffb22a13e06e84-C9997.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/134a97341ef016a343ffb22a13e06e84-C9997.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/14f8cbc620b0a89c2a11ca8deace58eb-DA2D1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/14f8cbc620b0a89c2a11ca8deace58eb-DA2D1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/158e7b633e4f4452b161153ab7ba17c3-83F88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/158e7b633e4f4452b161153ab7ba17c3-83F88.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/15cdaa10c5644d913a1ab1f9f06288c1-8A82B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/15cdaa10c5644d913a1ab1f9f06288c1-8A82B.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/17e6d21118aa7a0a26c8a0d14f156cdf-5A089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/17e6d21118aa7a0a26c8a0d14f156cdf-5A089.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/17e75583b024fe9606de1525a9f6752a-2E795.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/17e75583b024fe9606de1525a9f6752a-2E795.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/19e00fbd482789448f07352537800836-CD4DC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/19e00fbd482789448f07352537800836-CD4DC.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1b46faf0b094158572e6402e79edc5b4-A7DAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1b46faf0b094158572e6402e79edc5b4-A7DAD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1f329af4692837aba5c9bfee7732958d-0F9C6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1f329af4692837aba5c9bfee7732958d-0F9C6.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1f3fb-E58B7.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1f49a-E8B01.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1f49c-71A75.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1f50d-195C0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1f600-F7528.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1f62e-FE396.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/1f90e-091DA.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2-ADBB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2-ADBB4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/201416e548301c474985cfff30a5c3cf-AF15B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/201416e548301c474985cfff30a5c3cf-AF15B.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/258efb44a5e3f3ccd0db6c4b11462ff2-08900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/258efb44a5e3f3ccd0db6c4b11462ff2-08900.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2665-8CDCE.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2705-0589F.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2754-09670.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2764-A3D25.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2795-3358E.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2a9faff195fe333526cfe6ae6fce1420-49B98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2a9faff195fe333526cfe6ae6fce1420-49B98.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2b2652e618cdea6fd857a58f2e8bce33-31040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2b2652e618cdea6fd857a58f2e8bce33-31040.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2b2699f6d9ac3249e20b27eee4a1094c-B4AF0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2b2699f6d9ac3249e20b27eee4a1094c-B4AF0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2ba8bb567fe85ae375cf6149bdb83e4a-278B5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2ba8bb567fe85ae375cf6149bdb83e4a-278B5.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2bc9256840cf583765cbbee210b7c33a-A77F9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2bc9256840cf583765cbbee210b7c33a-A77F9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2c051f70ed27e4438dba6b5148fab939-D01EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2c051f70ed27e4438dba6b5148fab939-D01EB.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2c1e18acbcb9cdaeabfd7fc6f5090edf-CA387.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2c1e18acbcb9cdaeabfd7fc6f5090edf-CA387.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2ce2f26b9148649282b853c9b7541f14-B7695.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2ce2f26b9148649282b853c9b7541f14-B7695.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2f50a5b69093d885f873498e78476cd1-E6AF1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/2f50a5b69093d885f873498e78476cd1-E6AF1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/3-FB033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/3-FB033.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/30024f2eab00f1f2f2caee60d2b320a7-9F811.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/30024f2eab00f1f2f2caee60d2b320a7-9F811.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/32affc5ef9bab9ce5fe38a40d210c39b-0C7D2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/32affc5ef9bab9ce5fe38a40d210c39b-0C7D2.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/32bc9b17aad0e3eb8398ea8ba543d226-D3CC0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/32bc9b17aad0e3eb8398ea8ba543d226-D3CC0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/33f66f7bab184557cfa2f4e7bf69e71f-F0109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/33f66f7bab184557cfa2f4e7bf69e71f-F0109.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/356e7fb4efc19f760e0524ae11c49385-41889.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/356e7fb4efc19f760e0524ae11c49385-41889.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/357510ed1e5265aafb02bc7942ddaa82-01F7E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/357510ed1e5265aafb02bc7942ddaa82-01F7E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/366b7bd30566c2cb7cfbe6ce4a9cb61e-62DA9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/366b7bd30566c2cb7cfbe6ce4a9cb61e-62DA9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/389cdd876d49c2af64ce8a6c1117213f-48844.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/389cdd876d49c2af64ce8a6c1117213f-48844.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/39790: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/39790 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/3b01c38b7c5b905fd8e8a1d72f7d7492-53427.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/3b01c38b7c5b905fd8e8a1d72f7d7492-53427.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/3cc290db84d8ae57446d6411dd6e530a-F76F4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/3cc290db84d8ae57446d6411dd6e530a-F76F4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/4-4551A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/4-4551A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/411086cc24d93f371f41c1f28d3ac3b9-684FE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/411086cc24d93f371f41c1f28d3ac3b9-684FE.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/4155d983056d861c045620cf8e11d612-A5980.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/4155d983056d861c045620cf8e11d612-A5980.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/4182f210779b8c1627fa0418c7a78258-E53C0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/4182f210779b8c1627fa0418c7a78258-E53C0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/430fe5ce16c49a862957b4744b968b02-EAF19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/430fe5ce16c49a862957b4744b968b02-EAF19.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/459848100857774132-A8DB9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/459848100857774132-A8DB9.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/45f63d884cbf231e2ca665be01155e18-68113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/45f63d884cbf231e2ca665be01155e18-68113.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/46b66d498dd448743e27ba5994b06cce-4A96E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/46b66d498dd448743e27ba5994b06cce-4A96E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/492fcf2c1088e22bbbcab07a754eab58-53405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/492fcf2c1088e22bbbcab07a754eab58-53405.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5-E9BDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5-E9BDB.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/514d83db5e503f5a33fd3f790d42d452-555FF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/514d83db5e503f5a33fd3f790d42d452-555FF.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/520534c5d8407c48744b2a2c8eb20ab3-02152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/520534c5d8407c48744b2a2c8eb20ab3-02152.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5445ffd7ffb201a98393cbdf684ea4b1-FF0A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5445ffd7ffb201a98393cbdf684ea4b1-FF0A0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/55afac51a32db1ff015fd3a7d901e67a-A5862.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/55afac51a32db1ff015fd3a7d901e67a-A5862.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/568d22b97293cdd2d9b7006198d6adbc-F0132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/568d22b97293cdd2d9b7006198d6adbc-F0132.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/57758ce2-ee33-4ff5-900e-004103ce2566-A0609: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/57758ce2-ee33-4ff5-900e-004103ce2566-A0609 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5a078c30d4d416288536638339e819cd-F336E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5a078c30d4d416288536638339e819cd-F336E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5b35d94cab924210240eeadc2e5e2b91-3129A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5b35d94cab924210240eeadc2e5e2b91-3129A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5b71d15a9bcde45fd5520e3fb580eb53-E1A50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5b71d15a9bcde45fd5520e3fb580eb53-E1A50.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5cc1d3266f7f136e8723b66a920ac162-A08C0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5cc1d3266f7f136e8723b66a920ac162-A08C0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5d084bf7a4698ae3113c164cdd53ccbe-F4903.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/5d084bf7a4698ae3113c164cdd53ccbe-F4903.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/6519fe644ecf954cfdf81ad4c9fbaad9-B43F2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/6519fe644ecf954cfdf81ad4c9fbaad9-B43F2.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/66-58994: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/66-58994 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/67594ee4b4d1fc03bca468327a0d145b-BD76A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/67594ee4b4d1fc03bca468327a0d145b-BD76A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/686e06f76068aab839e3f85d1140404d-F7305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/686e06f76068aab839e3f85d1140404d-F7305.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/6a567cbfd6039038b3e7fb3b7b3c7185-7C949.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/6a567cbfd6039038b3e7fb3b7b3c7185-7C949.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/6ad4ef2f519afddce2d78021aa7dd099-B55F0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/6ad4ef2f519afddce2d78021aa7dd099-B55F0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/6d4d83e9a4db6b2f4ac37b2d0979c5e8-4091A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/6d4d83e9a4db6b2f4ac37b2d0979c5e8-4091A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/701300a5bdd3bf5640bd1370251533e2-0DC47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/701300a5bdd3bf5640bd1370251533e2-0DC47.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/758419104351649843-CABE9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/758419104351649843-CABE9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/769400b29fb3322511a75a69c3f7f55c-6D1B7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/769400b29fb3322511a75a69c3f7f55c-6D1B7.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/773490663245348864-8086D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/773490663245348864-8086D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/774308513191165992-08A98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/774308513191165992-08A98.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/79ed4e235411ad7a3a5971b1b3754e37-EA634.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/79ed4e235411ad7a3a5971b1b3754e37-EA634.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/7adf12b468b68aad27a481176efc4b37-C776F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/7adf12b468b68aad27a481176efc4b37-C776F.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/7b7b1265bb80105efc0c077e7748a28d-F4A60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/7b7b1265bb80105efc0c077e7748a28d-F4A60.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/7fb5758c5d2db4cd84defb760f0de04b-E0EA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/7fb5758c5d2db4cd84defb760f0de04b-E0EA1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/80e24bbc2fada669f9f8a03aef044a7b-73586.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/80e24bbc2fada669f9f8a03aef044a7b-73586.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/8230f476eec54d0f43d90d66df912139-9C1D4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/8230f476eec54d0f43d90d66df912139-9C1D4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893157188599838-C23B5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893157188599838-C23B5.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893827027075142-F23DF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893827027075142-F23DF.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893827089727568-5FD38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893827089727568-5FD38.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893827278602280-FABCC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893827278602280-FABCC.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893827315826708-F59C0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893827315826708-F59C0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893828280909886-FBF42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/851893828280909886-FBF42.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/85e81785736a2d7dd79efcb1f5f390bc-9489A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/85e81785736a2d7dd79efcb1f5f390bc-9489A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/860bc8415fcb344bebcf89a301158ffd-36A89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/860bc8415fcb344bebcf89a301158ffd-36A89.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/86405fe46555cfeea65230abea180e3f-B42C2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/86405fe46555cfeea65230abea180e3f-B42C2.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/8646f8b4f073429bf27df27459ab18a2-F6800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/8646f8b4f073429bf27df27459ab18a2-F6800.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/879838448842846228-1B6CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/879838448842846228-1B6CC.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/8b012f0e72a057bfc421ad2b4860c8a7-EE48A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/8b012f0e72a057bfc421ad2b4860c8a7-EE48A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/8ed3a99e11f2fb13d21d899d7c6add25-D476E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/8ed3a99e11f2fb13d21d899d7c6add25-D476E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9010cff7dc5115048ddc82561051356b-12341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9010cff7dc5115048ddc82561051356b-12341.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/901128936921128991-9C6D4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/901128936921128991-9C6D4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/910676187288846397-518CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/910676187288846397-518CD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/918262047433691247-911FE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/918262047433691247-911FE.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/920142238275764255-06F6D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/920142238275764255-06F6D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/920756949019148299-8903C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/920756949019148299-8903C.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/92719dd7bc8cb77c2a6b6813ef47a830-56832.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/92719dd7bc8cb77c2a6b6813ef47a830-56832.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/934055812859856cd87c3c397ccb56bd-064C4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/934055812859856cd87c3c397ccb56bd-064C4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9542a3c6a8ce011c16ce81d61dc908f9-F344E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9542a3c6a8ce011c16ce81d61dc908f9-F344E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9551ee7a32c0d29e74906d621eeb155d-257A7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9551ee7a32c0d29e74906d621eeb155d-257A7.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/966eaf1aafcae6abcb9e0db823947e2f-96F55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/966eaf1aafcae6abcb9e0db823947e2f-96F55.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/970d2e2f00cd7ef2134a1a3f21326349-404EA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/970d2e2f00cd7ef2134a1a3f21326349-404EA.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/97194c8d8c110a8c51ac4127733637d5-ADD1C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/97194c8d8c110a8c51ac4127733637d5-ADD1C.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/977133670429261884-CA8EA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/977133670429261884-CA8EA.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/97d0540d85f9bdeaf447a359aec7cd73-AE94E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/97d0540d85f9bdeaf447a359aec7cd73-AE94E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/986233840056037386-18257.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/986233840056037386-18257.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9b01adfea5eb85ed7f3fc2c94c3592c8-E96F4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9b01adfea5eb85ed7f3fc2c94c3592c8-E96F4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9bf2181404e658cab4039c07df56213f-E3E89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9bf2181404e658cab4039c07df56213f-E3E89.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9ddc4c71e093608f901c04718c8c20df-CFA0F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9ddc4c71e093608f901c04718c8c20df-CFA0F.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9f2b18758b64819e9c9233dc86c42a3c-77657.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/9f2b18758b64819e9c9233dc86c42a3c-77657.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/LXx8k7_o_400x400-2FEFA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/LXx8k7_o_400x400-2FEFA.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/RPReplay_Final1705454034-1712B.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/RPReplay_Final1705454034-1712B.mov -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-04_at_4.26.48_PM-4F452.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-04_at_4.26.48_PM-4F452.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-10_at_12.05.53_PM-C09DA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-10_at_12.05.53_PM-C09DA.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-10_at_12.05.59_PM-2701F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-10_at_12.05.59_PM-2701F.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-11_000945-C36B7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-11_000945-C36B7.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-11_at_4.05.50_PM-BF6BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-11_at_4.05.50_PM-BF6BD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-11_at_9.50.33_AM-C3A58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_2023-10-11_at_9.50.33_AM-C3A58.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_667-34FDD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_667-34FDD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_670-0C713.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/Screenshot_670-0C713.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/WX20231020-1150572x-0A9AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/WX20231020-1150572x-0A9AD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a03c3c93623dafd0c05f13b3a995f203-3D860.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a03c3c93623dafd0c05f13b3a995f203-3D860.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a1333613cb25fd50436141eec55745c9-4E7CB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a1333613cb25fd50436141eec55745c9-4E7CB.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a2137aad94eca43e965735f01ae6b491-C6B0B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a2137aad94eca43e965735f01ae6b491-C6B0B.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a46a59d6636619f3cc132c12dba469a6-7A310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a46a59d6636619f3cc132c12dba469a6-7A310.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a4c5f4ed4ac3c1bfaae3fc3aa73bcdc5-9A986.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a4c5f4ed4ac3c1bfaae3fc3aa73bcdc5-9A986.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a6700d776b9feae9a8825a05eb056151-9CE8A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a6700d776b9feae9a8825a05eb056151-9CE8A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a681a986fc31a9739459ccc096516151-9053D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a681a986fc31a9739459ccc096516151-9053D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a6defa6808e3fe166028d66a76778624-DFAA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a6defa6808e3fe166028d66a76778624-DFAA0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a_1bf1676e45a74aaa9b4a2f0fd1d9a798-D2471.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a_1bf1676e45a74aaa9b4a2f0fd1d9a798-D2471.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a_8c57d0418aa0476448a76ddc091071a1-7B310.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a_8c57d0418aa0476448a76ddc091071a1-7B310.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a_aa89d0e10b5f86c6ae82347d8dc19fe8-1A758.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/a_aa89d0e10b5f86c6ae82347d8dc19fe8-1A758.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/aa24291fb1227c5734330daec1d79595-C9CFC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/aa24291fb1227c5734330daec1d79595-C9CFC.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/aba7f6b23cd80ec9e8655016ce6ef443-529ED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/aba7f6b23cd80ec9e8655016ce6ef443-529ED.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/abb480ed1510d7994e58bc85f8e989d6-66497.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/abb480ed1510d7994e58bc85f8e989d6-66497.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ac37f50421d713952c5567868c0ce8fc-83194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ac37f50421d713952c5567868c0ce8fc-83194.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/adddc7313b30a4e8b5329894bf2034ab-5B4E5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/adddc7313b30a4e8b5329894bf2034ab-5B4E5.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ae55bccd105a97e5e171c290822eab04-394BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ae55bccd105a97e5e171c290822eab04-394BB.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/af47db264f598a776eef080a2c7aee22-4D508.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/af47db264f598a776eef080a2c7aee22-4D508.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/apple-touch-icon-192x192-86515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/apple-touch-icon-192x192-86515.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/b2680abf1970a250b052bbd6059a1b24-B7522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/b2680abf1970a250b052bbd6059a1b24-B7522.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/b4fead77f737aa7840a25e1cd39eb062-CEDEC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/b4fead77f737aa7840a25e1cd39eb062-CEDEC.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/b532e9790048be98716684777bb0b3da-248E4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/b532e9790048be98716684777bb0b3da-248E4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/baby-yoda-hi-6F83D.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/baby-yoda-hi-6F83D.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/bb9f76664711c9b5009e7a6add580b29-7CFF5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/bb9f76664711c9b5009e7a6add580b29-7CFF5.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/bot-3C182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/bot-3C182.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c4-og-banner-7E00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c4-og-banner-7E00C.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c4-og-banner-AC16D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c4-og-banner-AC16D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c47d52c806aea627c7b227b287ce8808-40688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c47d52c806aea627c7b227b287ce8808-40688.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c56fa8715ba8664bdbeca68e6a22aa60-EEE9C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c56fa8715ba8664bdbeca68e6a22aa60-EEE9C.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c6b85a4a6ca07ab15a30a24f570be5b8-1F210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c6b85a4a6ca07ab15a30a24f570be5b8-1F210.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c6d26a3e68c59bd84c235cce3ad37904-87D0A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c6d26a3e68c59bd84c235cce3ad37904-87D0A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c6ddfdbe9d867380007d3fe739a22017-92620.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c6ddfdbe9d867380007d3fe739a22017-92620.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c82b3fa769ed6e6ffdea579381ed5f5c-5A29C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c82b3fa769ed6e6ffdea579381ed5f5c-5A29C.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c8582808c3d6e596a73294c8b1ded7e8-7A679.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c8582808c3d6e596a73294c8b1ded7e8-7A679.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c9cb30134c634c9e02d0c64df4922803-98E33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/c9cb30134c634c9e02d0c64df4922803-98E33.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/caddfef873d50dfd002a7267097067d2-607D7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/caddfef873d50dfd002a7267097067d2-607D7.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/cbe421d8f4629ab519aee7436670f204-DE829.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/cbe421d8f4629ab519aee7436670f204-DE829.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/cd830d98142183666c0a4f5a46540368-30316.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/cd830d98142183666c0a4f5a46540368-30316.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/congrats-congrats-gif-E34E3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/congrats-congrats-gif-E34E3.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/crazy-jim-carrey-1748C.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/crazy-jim-carrey-1748C.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d05992162b128265b0f4fd4543b46456-9F835.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d05992162b128265b0f4fd4543b46456-9F835.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d2a162ea47f3840acf3a61c2542af236-3CFFE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d2a162ea47f3840acf3a61c2542af236-3CFFE.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d352b5d64239648acbeb7b6f310df0b8-E875A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d352b5d64239648acbeb7b6f310df0b8-E875A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d35a0c87f7f9f5e7c67430ca9593af01-64365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d35a0c87f7f9f5e7c67430ca9593af01-64365.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d5be42389ea341d7a8c980f830a2ea27-271A4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d5be42389ea341d7a8c980f830a2ea27-271A4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d6411e6ba59c11600c691e2d72a71639-F99CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d6411e6ba59c11600c691e2d72a71639-F99CD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d97fdd2909353ad7b5ac1b3890e1e928-E60B7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/d97fdd2909353ad7b5ac1b3890e1e928-E60B7.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/dance-gru-1DC19.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/dance-gru-1DC19.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ddde630c4ffa00ebee335e58d951bba5-3F2EA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ddde630c4ffa00ebee335e58d951bba5-3F2EA.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/df5db791cacdfbeb4e60dcf34fca9dd2-FFC5D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/df5db791cacdfbeb4e60dcf34fca9dd2-FFC5D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/dfacc77d68962a991f5a4c3b7859b4c2-BAB3E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/dfacc77d68962a991f5a4c3b7859b4c2-BAB3E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/dont-cry-9E70B.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/dont-cry-9E70B.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/e62e325ddc1b1e595c6c52bb00b320c7-4CF2E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/e62e325ddc1b1e595c6c52bb00b320c7-4CF2E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/eaffa34638e50dc977da9d0d52a5113a-AE325.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/eaffa34638e50dc977da9d0d52a5113a-AE325.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/eb3d38f0f0262d04db31fc662aa09b2b-16519.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/eb3d38f0f0262d04db31fc662aa09b2b-16519.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ec29e162c99a502f591715e569811ab5-4EBC6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ec29e162c99a502f591715e569811ab5-4EBC6.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ec906ee29b2bacd49cd7e28a849ef04b-F54DF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ec906ee29b2bacd49cd7e28a849ef04b-F54DF.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ed4484ef66c898526d51a3b65936c2ff-6B4AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ed4484ef66c898526d51a3b65936c2ff-6B4AE.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ee6c31750f46b7cd080ab8b84efae1c2-9E926.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ee6c31750f46b7cd080ab8b84efae1c2-9E926.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/efc72d9e28a1eacd5ec86918b3dde6cd-8ED8F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/efc72d9e28a1eacd5ec86918b3dde6cd-8ED8F.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/era-zkevm_circuits-8B1CA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/era-zkevm_circuits-8B1CA -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f08364e68445246bedff046d83f84fd8-55F65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f08364e68445246bedff046d83f84fd8-55F65.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f158568cfe853b25cfb6a45a23a74224-ADFB7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f158568cfe853b25cfb6a45a23a74224-ADFB7.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f34dde41d9b0f33fc69a5d0a082b9bcc-F2F7F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f34dde41d9b0f33fc69a5d0a082b9bcc-F2F7F.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f49d701795e5aa0ae6eb38736a954638-6EE9B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f49d701795e5aa0ae6eb38736a954638-6EE9B.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f4f73fc0c2e452cd53ec3b3138883251-C4CDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f4f73fc0c2e452cd53ec3b3138883251-C4CDF.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f7147bfadb72a2afd2401e5071b39609-7268B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f7147bfadb72a2afd2401e5071b39609-7268B.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f72c5f6eae5af3197504f447d8d59688-3515E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f72c5f6eae5af3197504f447d8d59688-3515E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f8ee3d74786e5ca83e77844ce1b50a9f-E20FE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/f8ee3d74786e5ca83e77844ce1b50a9f-E20FE.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fd032d1c27ba593b4fbe6be4c074663d-78A1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fd032d1c27ba593b4fbe6be4c074663d-78A1D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fd61dd1a8ad38e5b2b9264a9ef490dd2-D1976.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fd61dd1a8ad38e5b2b9264a9ef490dd2-D1976.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fd6d3757068a5df51317fc7c77a1eb8a-EDE91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fd6d3757068a5df51317fc7c77a1eb8a-EDE91.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fdcd8fcf50b5d50867fb54463cfade81-A71F0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fdcd8fcf50b5d50867fb54463cfade81-A71F0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fe9558f335cb8f887866a2c6cd93a6d0-F7F17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fe9558f335cb8f887866a2c6cd93a6d0-F7F17.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fuming-angry-76032.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/fuming-angry-76032.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-400-E988B.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-400-E988B.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-500-0777F.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-500-0777F.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-600-CB411.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-600-CB411.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-700-891AC.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-700-891AC.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-800-D36B0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-italic-800-D36B0.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-400-1456D.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-400-1456D.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-500-89CE5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-500-89CE5.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-600-C1EA8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-600-C1EA8.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-700-1949A.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-700-1949A.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-800-58487.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/ggsans-normal-800-58487.woff2 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/hasbulla-money-0551F.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/hasbulla-money-0551F.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/im-dying-here-man-kyle-mclusky-24340.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/im-dying-here-man-kyle-mclusky-24340.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/im-out-goodbye-90C41.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/im-out-goodbye-90C41.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-0CE74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-0CE74.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-17374.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-17374.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-1FB0D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-1FB0D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-342C1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-342C1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-5AF27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-5AF27.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-77A3B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-77A3B.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-92647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-92647.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-9C793.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-9C793.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-A2FD1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-A2FD1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-A5AE9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-A5AE9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-B461D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-B461D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-EDA54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-EDA54.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-F69BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-F69BB.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-F9455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image-F9455.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image0-600AA.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image0-600AA.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image0-6F16C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/image0-6F16C.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/imageC4-5B825.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/imageC4-5B825.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/itll-be-worth-the-wait-i-promise-78275.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/itll-be-worth-the-wait-i-promise-78275.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/me-waiting-for-my-friends-to-get-online-7FE29.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/me-waiting-for-my-friends-to-get-online-7FE29.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/money-287B8.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/money-287B8.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/monkey-laptop-2CE68.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/monkey-laptop-2CE68.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/oh-my-god-its-happening-B83F8.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/oh-my-god-its-happening-B83F8.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/sadcat-4F71B.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/sadcat-4F71B.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/share_image-A9244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/share_image-A9244.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/shocked-surprised-4A150.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/shocked-surprised-4A150.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/shrek-smirk-shrek-horny-39ADF.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/shrek-smirk-shrek-horny-39ADF.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/social-image-1858E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/social-image-1858E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/spider-man-okay-i-give-up-4EDDD.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/spider-man-okay-i-give-up-4EDDD.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/star-wars-yoda-B4C23.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/star-wars-yoda-B4C23.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/sweating-nervous-6FF7E.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/sweating-nervous-6FF7E.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/sweating-nervous-8C998.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/sweating-nervous-8C998.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231018-132041-7CBB3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231018-132041-7CBB3.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231018-155443-C31D9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231018-155443-C31D9.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231020-191325-E1641.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231020-191325-E1641.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231020-191854-BAAE3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231020-191854-BAAE3.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231020-191945-A91E6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231020-191945-A91E6.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231020-192404-0DE6B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tempFileForShare_20231020-192404-0DE6B.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tenset-10set-70730.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/tenset-10set-70730.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/thanos-i-finally-rest-D8D7E.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/thanos-i-finally-rest-D8D7E.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/titanic-titanic-movie-037CA.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/titanic-titanic-movie-037CA.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/waiting-D439C.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/waiting-D439C.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/waiting-waiting-patiently-C4D47.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/waiting-waiting-patiently-C4D47.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/willy-wonka-gene-wilder-FC547.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/willy-wonka-gene-wilder-FC547.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/wow-celebration-EC7A1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/wow-celebration-EC7A1.mp4 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/zksync-era-121D3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/zksync-era-121D3 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/zksync-era-1ADCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/zksync-era-1ADCF -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/zksync-era-BB937: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/zksync-era-BB937 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/zksync-web-era-docs-65681: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].html_Files/zksync-web-era-docs-65681 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/39790: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/39790 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/57758ce2-ee33-4ff5-900e-004103ce2566-A0609: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/57758ce2-ee33-4ff5-900e-004103ce2566-A0609 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/66-58994: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/66-58994 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/RPReplay_Final1705454034-1712B.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/RPReplay_Final1705454034-1712B.mov -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-04_at_4.26.48_PM-4F452.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-04_at_4.26.48_PM-4F452.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-10_at_12.05.53_PM-C09DA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-10_at_12.05.53_PM-C09DA.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-10_at_12.05.59_PM-2701F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-10_at_12.05.59_PM-2701F.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-11_000945-C36B7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-11_000945-C36B7.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-11_at_4.05.50_PM-BF6BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-11_at_4.05.50_PM-BF6BD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-11_at_9.50.33_AM-C3A58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_2023-10-11_at_9.50.33_AM-C3A58.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_667-34FDD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_667-34FDD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_670-0C713.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/Screenshot_670-0C713.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/WX20231020-1150572x-0A9AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/WX20231020-1150572x-0A9AD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/baby-yoda-hi-12441.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/baby-yoda-hi-12441.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/bot-3C182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/bot-3C182.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/c4-og-banner-7E00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/c4-og-banner-7E00C.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/c4-og-banner-AC16D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/c4-og-banner-AC16D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/congrats-congrats-gif-AFEFC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/congrats-congrats-gif-AFEFC.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/crazy-jim-carrey-7A320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/crazy-jim-carrey-7A320.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/dance-gru-009C1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/dance-gru-009C1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/dont-cry-93595.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/dont-cry-93595.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/era-zkevm_circuits-8B1CA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/era-zkevm_circuits-8B1CA -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/fuming-angry-18362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/fuming-angry-18362.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/hasbulla-money-22B63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/hasbulla-money-22B63.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/im-dying-here-man-kyle-mclusky-EB4B4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/im-dying-here-man-kyle-mclusky-EB4B4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/im-out-goodbye-C41C0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/im-out-goodbye-C41C0.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-0CE74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-0CE74.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-17374.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-17374.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-1FB0D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-1FB0D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-342C1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-342C1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-5AF27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-5AF27.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-77A3B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-77A3B.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-92647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-92647.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-9C793.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-9C793.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-A2FD1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-A2FD1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-A5AE9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-A5AE9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-B461D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-B461D.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-EDA54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-EDA54.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-F69BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-F69BB.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-F9455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image-F9455.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image0-600AA.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image0-600AA.gif -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image0-6F16C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/image0-6F16C.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/imageC4-5B825.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/imageC4-5B825.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/itll-be-worth-the-wait-i-promise-B76D9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/itll-be-worth-the-wait-i-promise-B76D9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/me-waiting-for-my-friends-to-get-online-3049B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/me-waiting-for-my-friends-to-get-online-3049B.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/money-75FE4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/money-75FE4.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/monkey-laptop-6D6FD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/monkey-laptop-6D6FD.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/oh-my-god-its-happening-43B31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/oh-my-god-its-happening-43B31.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/sadcat-57838.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/sadcat-57838.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/share_image-A9244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/share_image-A9244.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/shocked-surprised-72FCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/shocked-surprised-72FCB.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/shrek-smirk-shrek-horny-3B1BC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/shrek-smirk-shrek-horny-3B1BC.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/social-image-1858E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/social-image-1858E.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/spider-man-okay-i-give-up-B8229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/spider-man-okay-i-give-up-B8229.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/star-wars-yoda-85920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/star-wars-yoda-85920.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/sweating-nervous-0BAD9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/sweating-nervous-0BAD9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/sweating-nervous-3FA35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/sweating-nervous-3FA35.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231018-132041-7CBB3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231018-132041-7CBB3.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231018-155443-C31D9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231018-155443-C31D9.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231020-191325-E1641.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231020-191325-E1641.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231020-191854-BAAE3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231020-191854-BAAE3.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231020-191945-A91E6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231020-191945-A91E6.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231020-192404-0DE6B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tempFileForShare_20231020-192404-0DE6B.jpg -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tenset-10set-A161B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/tenset-10set-A161B.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/thanos-i-finally-rest-F18B9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/thanos-i-finally-rest-F18B9.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/titanic-titanic-movie-16C12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/titanic-titanic-movie-16C12.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/waiting-837D1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/waiting-837D1.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/waiting-waiting-patiently-C8F8A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/waiting-waiting-patiently-C8F8A.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/willy-wonka-gene-wilder-8CBB3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/willy-wonka-gene-wilder-8CBB3.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/wow-celebration-0C373.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/wow-celebration-0C373.png -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/zksync-era-121D3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/zksync-era-121D3 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/zksync-era-1ADCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/zksync-era-1ADCF -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/zksync-era-BB937: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/zksync-era-BB937 -------------------------------------------------------------------------------- /discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/zksync-web-era-docs-65681: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/discord-export/Code4rena - ARCHIVE-Q4-2023 - zksync-oct2 [1155932390703775817].txt_Files/zksync-web-era-docs-65681 -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(1).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(11).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(11).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(12).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(13).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(13).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(14).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(14).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(16).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(16).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(17).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(17).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(2).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(3).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(4).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(7).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(8).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied(9).png -------------------------------------------------------------------------------- /docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Boojum function check_if_satisfied/Check_if_satisfied.png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuit testing/Contest(10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuit testing/Contest(10).png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuit testing/Contest(11).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuit testing/Contest(11).png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuit testing/Contest(12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuit testing/Contest(12).png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuit testing/Contest(4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuit testing/Contest(4).png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuit testing/Contest(5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuit testing/Contest(5).png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuit testing/Contest(6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuit testing/Contest(6).png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuit testing/Contest(7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuit testing/Contest(7).png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuit testing/Contest(8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuit testing/Contest(8).png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuit testing/Contest(9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuit testing/Contest(9).png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuits/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuits/diagram.png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuits/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuits/flowchart.png -------------------------------------------------------------------------------- /docs/Circuits Section/Circuits/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Circuits/image.png -------------------------------------------------------------------------------- /docs/Circuits Section/Intro to zkSync’s ZK/circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Circuits Section/Intro to zkSync’s ZK/circuit.png -------------------------------------------------------------------------------- /docs/Smart contract Section/L1 smart contracts/diamondProxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Smart contract Section/L1 smart contracts/diamondProxy.jpg -------------------------------------------------------------------------------- /docs/Smart contract Section/L1 smart contracts/governance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/Smart contract Section/L1 smart contracts/governance.jpg -------------------------------------------------------------------------------- /docs/VM Section/EraVM Formal specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/VM Section/EraVM Formal specification.pdf -------------------------------------------------------------------------------- /docs/VM Section/How compiler works/instructions/extensions/overview.md: -------------------------------------------------------------------------------- 1 | # zkSync Era Extensions 2 | 3 | Since we have no control over the Solidity compiler, we are using temporary hacks to support zkSync-specific instructions: 4 | 5 | - [Call substitutions](https://github.com/code-423n4/2023-10-zksync/blob/main/docs/VM%20Section/How%20compiler%20works/instructions/extensions/call.md) 6 | - [Verbatim substitutions](https://github.com/code-423n4/2023-10-zksync/blob/main/docs/VM%20Section/How%20compiler%20works/instructions/extensions/verbatim.md) -------------------------------------------------------------------------------- /docs/VM Section/zkSync Era VM primer/arch-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/VM Section/zkSync Era VM primer/arch-overview.png -------------------------------------------------------------------------------- /docs/VM Section/zkSync Era VM primer/arithmetic_opcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-423n4/2023-10-zksync/26547a90d569559ef5c80ff8c523010134e84a71/docs/VM Section/zkSync Era VM primer/arithmetic_opcode.png --------------------------------------------------------------------------------