Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- VAN
- Optimization enabled
- false
- Compiler version
- v0.8.20+commit.a1b79de6
- EVM Version
- istanbul
- Verified at
- 2023-11-23T22:57:43.682979Z
Contract source code
/** /$$ /$$ /$$$$$$ /$$ /$$ /$$$$$$$$ /$$ | $$ | $$ /$$__ $$| $$$ | $$ |__ $$__/ | $$ | $$ | $$| $$ \ $$| $$$$| $$ | $$ /$$$$$$ | $$ /$$ /$$$$$$ /$$$$$$$ | $$ / $$/| $$$$$$$$| $$ $$ $$ | $$ /$$__ $$| $$ /$$/ /$$__ $$| $$__ $$ \ $$ $$/ | $$__ $$| $$ $$$$ | $$| $$ \ $$| $$$$$$/ | $$$$$$$$| $$ \ $$ \ $$$/ | $$ | $$| $$\ $$$ | $$| $$ | $$| $$_ $$ | $$_____/| $$ | $$ \ $/ | $$ | $$| $$ \ $$ | $$| $$$$$$/| $$ \ $$| $$$$$$$| $$ | $$ \_/ |__/ |__/|__/ \__/ |__/ \______/ |__/ \__/ \_______/|__/ |__/ */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/interfaces/draft-IERC6093.sol@v5.0.0 // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance( address sender, uint256 balance, uint256 needed ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance( address spender, uint256 allowance, uint256 needed ); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance( address sender, uint256 balance, uint256 needed, uint256 tokenId ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.0.0 // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 value ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v5.0.0 // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/Context.sol@v5.0.0 // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/ERC20.sol@v5.0.0 // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 value ) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom( address from, address to, uint256 value ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve( address owner, address spender, uint256 value, bool emitEvent ) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 value ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance( spender, currentAllowance, value ); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File contracts/VAN.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.20; contract VAN is ERC20 { bytes32 public DOMAIN_SEPARATOR; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; mapping(address => uint) public nonces; constructor() ERC20("VanillaSwap Token", "VAN") { _mint(0xe9426F6f05a7C8d5c067a7e5e51d00aE08d133b1, 1e9 * 1e18); uint chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes("VanillaSwap Token")), keccak256(bytes("1")), chainId, address(this) ) ); } function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external { require(deadline >= block.timestamp, "VAN::permit: expired"); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256( abi.encode( PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline ) ) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require( recoveredAddress != address(0) && recoveredAddress == owner, "VAN::permit: invalid signature" ); _approve(owner, spender, value); } }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"ERC20InsufficientAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"allowance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InsufficientBalance","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InvalidApprover","inputs":[{"type":"address","name":"approver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidReceiver","inputs":[{"type":"address","name":"receiver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSender","inputs":[{"type":"address","name":"sender","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSpender","inputs":[{"type":"address","name":"spender","internalType":"address"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DOMAIN_SEPARATOR","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PERMIT_TYPEHASH","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nonces","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"permit","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]}]
Contract Creation Code
0x60806040523480156200001157600080fd5b506040518060400160405280601181526020017f56616e696c6c615377617020546f6b656e0000000000000000000000000000008152506040518060400160405280600381526020017f56414e000000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620006e8565b508060049081620000a19190620006e8565b505050620000d673e9426f6f05a7c8d5c067a7e5e51d00ae08d133b16b033b2e3c9fd0803ce8000000620001b160201b60201c565b60004690507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6040518060400160405280601181526020017f56616e696c6c615377617020546f6b656e000000000000000000000000000000815250805190602001206040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152508051906020012083306040516020016200018e95949392919062000840565b60405160208183030381529060405280519060200120600581905550506200097e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002265760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200021d91906200089d565b60405180910390fd5b6200023a600083836200023e60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000294578060026000828254620002879190620008e9565b925050819055506200036a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000323578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200031a9392919062000924565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003b5578060026000828254039250508190555062000402565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000461919062000961565b60405180910390a3505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f057607f821691505b602082108103620005065762000505620004a8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000531565b6200057c868362000531565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005c9620005c3620005bd8462000594565b6200059e565b62000594565b9050919050565b6000819050919050565b620005e583620005a8565b620005fd620005f482620005d0565b8484546200053e565b825550505050565b600090565b6200061462000605565b62000621818484620005da565b505050565b5b8181101562000649576200063d6000826200060a565b60018101905062000627565b5050565b601f821115620006985762000662816200050c565b6200066d8462000521565b810160208510156200067d578190505b620006956200068c8562000521565b83018262000626565b50505b505050565b600082821c905092915050565b6000620006bd600019846008026200069d565b1980831691505092915050565b6000620006d88383620006aa565b9150826002028217905092915050565b620006f3826200046e565b67ffffffffffffffff8111156200070f576200070e62000479565b5b6200071b8254620004d7565b620007288282856200064d565b600060209050601f8311600181146200076057600084156200074b578287015190505b620007578582620006ca565b865550620007c7565b601f19841662000770866200050c565b60005b828110156200079a5784890151825560018201915060208501945060208101905062000773565b86831015620007ba5784890151620007b6601f891682620006aa565b8355505b6001600288020188555050505b505050505050565b6000819050919050565b620007e481620007cf565b82525050565b620007f58162000594565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200082882620007fb565b9050919050565b6200083a816200081b565b82525050565b600060a082019050620008576000830188620007d9565b620008666020830187620007d9565b620008756040830186620007d9565b620008846060830185620007ea565b6200089360808301846200082f565b9695505050505050565b6000602082019050620008b460008301846200082f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008f68262000594565b9150620009038362000594565b92508282019050808211156200091e576200091d620008ba565b5b92915050565b60006060820190506200093b60008301866200082f565b6200094a6020830185620007ea565b620009596040830184620007ea565b949350505050565b6000602082019050620009786000830184620007ea565b92915050565b611529806200098e6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80633644e5151161008c57806395d89b411161006657806395d89b411461022a578063a9059cbb14610248578063d505accf14610278578063dd62ed3e14610294576100cf565b80633644e515146101ac57806370a08231146101ca5780637ecebe00146101fa576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd1461014057806330adf81f14610170578063313ce5671461018e575b600080fd5b6100dc6102c4565b6040516100e99190610dda565b60405180910390f35b61010c60048036038101906101079190610e95565b610356565b6040516101199190610ef0565b60405180910390f35b61012a610379565b6040516101379190610f1a565b60405180910390f35b61015a60048036038101906101559190610f35565b610383565b6040516101679190610ef0565b60405180910390f35b6101786103b2565b6040516101859190610fa1565b60405180910390f35b6101966103d9565b6040516101a39190610fd8565b60405180910390f35b6101b46103e2565b6040516101c19190610fa1565b60405180910390f35b6101e460048036038101906101df9190610ff3565b6103e8565b6040516101f19190610f1a565b60405180910390f35b610214600480360381019061020f9190610ff3565b610430565b6040516102219190610f1a565b60405180910390f35b610232610448565b60405161023f9190610dda565b60405180910390f35b610262600480360381019061025d9190610e95565b6104da565b60405161026f9190610ef0565b60405180910390f35b610292600480360381019061028d9190611078565b6104fd565b005b6102ae60048036038101906102a9919061111a565b610725565b6040516102bb9190610f1a565b60405180910390f35b6060600380546102d390611189565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff90611189565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b6000806103616107ac565b905061036e8185856107b4565b600191505092915050565b6000600254905090565b60008061038e6107ac565b905061039b8582856107c6565b6103a685858561085a565b60019150509392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b60006012905090565b60055481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60066020528060005260406000206000915090505481565b60606004805461045790611189565b80601f016020809104026020016040519081016040528092919081815260200182805461048390611189565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b6000806104e56107ac565b90506104f281858561085a565b600191505092915050565b42841015610540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053790611206565b60405180910390fd5b60006005547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600660008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906105bc90611255565b919050558a6040516020016105d6969594939291906112ac565b604051602081830303815290604052805190602001206040516020016105fd929190611385565b60405160208183030381529060405280519060200120905060006001828686866040516000815260200160405260405161063a94939291906113bc565b6020604051602081039080840390855afa15801561065c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156106d057508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61070f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107069061144d565b60405180910390fd5b61071a8989896107b4565b505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6107c1838383600161094e565b505050565b60006107d28484610725565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108545781811015610844578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161083b9392919061146d565b60405180910390fd5b6108538484848403600061094e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108cc5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108c391906114a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361093e5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161093591906114a4565b60405180910390fd5b610949838383610b25565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109c05760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109b791906114a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a325760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a2991906114a4565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610b1f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b169190610f1a565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b77578060026000828254610b6b91906114bf565b92505081905550610c4a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c03578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bfa9392919061146d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c935780600260008282540392505081905550610ce0565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d3d9190610f1a565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d84578082015181840152602081019050610d69565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dac82610d4a565b610db68185610d55565b9350610dc6818560208601610d66565b610dcf81610d90565b840191505092915050565b60006020820190508181036000830152610df48184610da1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e2c82610e01565b9050919050565b610e3c81610e21565b8114610e4757600080fd5b50565b600081359050610e5981610e33565b92915050565b6000819050919050565b610e7281610e5f565b8114610e7d57600080fd5b50565b600081359050610e8f81610e69565b92915050565b60008060408385031215610eac57610eab610dfc565b5b6000610eba85828601610e4a565b9250506020610ecb85828601610e80565b9150509250929050565b60008115159050919050565b610eea81610ed5565b82525050565b6000602082019050610f056000830184610ee1565b92915050565b610f1481610e5f565b82525050565b6000602082019050610f2f6000830184610f0b565b92915050565b600080600060608486031215610f4e57610f4d610dfc565b5b6000610f5c86828701610e4a565b9350506020610f6d86828701610e4a565b9250506040610f7e86828701610e80565b9150509250925092565b6000819050919050565b610f9b81610f88565b82525050565b6000602082019050610fb66000830184610f92565b92915050565b600060ff82169050919050565b610fd281610fbc565b82525050565b6000602082019050610fed6000830184610fc9565b92915050565b60006020828403121561100957611008610dfc565b5b600061101784828501610e4a565b91505092915050565b61102981610fbc565b811461103457600080fd5b50565b60008135905061104681611020565b92915050565b61105581610f88565b811461106057600080fd5b50565b6000813590506110728161104c565b92915050565b600080600080600080600060e0888a03121561109757611096610dfc565b5b60006110a58a828b01610e4a565b97505060206110b68a828b01610e4a565b96505060406110c78a828b01610e80565b95505060606110d88a828b01610e80565b94505060806110e98a828b01611037565b93505060a06110fa8a828b01611063565b92505060c061110b8a828b01611063565b91505092959891949750929550565b6000806040838503121561113157611130610dfc565b5b600061113f85828601610e4a565b925050602061115085828601610e4a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111a157607f821691505b6020821081036111b4576111b361115a565b5b50919050565b7f56414e3a3a7065726d69743a2065787069726564000000000000000000000000600082015250565b60006111f0601483610d55565b91506111fb826111ba565b602082019050919050565b6000602082019050818103600083015261121f816111e3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126082610e5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361129257611291611226565b5b600182019050919050565b6112a681610e21565b82525050565b600060c0820190506112c16000830189610f92565b6112ce602083018861129d565b6112db604083018761129d565b6112e86060830186610f0b565b6112f56080830185610f0b565b61130260a0830184610f0b565b979650505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061134e60028361130d565b915061135982611318565b600282019050919050565b6000819050919050565b61137f61137a82610f88565b611364565b82525050565b600061139082611341565b915061139c828561136e565b6020820191506113ac828461136e565b6020820191508190509392505050565b60006080820190506113d16000830187610f92565b6113de6020830186610fc9565b6113eb6040830185610f92565b6113f86060830184610f92565b95945050505050565b7f56414e3a3a7065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000611437601e83610d55565b915061144282611401565b602082019050919050565b600060208201905081810360008301526114668161142a565b9050919050565b6000606082019050611482600083018661129d565b61148f6020830185610f0b565b61149c6040830184610f0b565b949350505050565b60006020820190506114b9600083018461129d565b92915050565b60006114ca82610e5f565b91506114d583610e5f565b92508282019050808211156114ed576114ec611226565b5b9291505056fea264697066735822122094b4a8c7b29d5b6b2698b81654cb9de13b828ae2b9db988e60fb8357794c184864736f6c63430008140033
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80633644e5151161008c57806395d89b411161006657806395d89b411461022a578063a9059cbb14610248578063d505accf14610278578063dd62ed3e14610294576100cf565b80633644e515146101ac57806370a08231146101ca5780637ecebe00146101fa576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd1461014057806330adf81f14610170578063313ce5671461018e575b600080fd5b6100dc6102c4565b6040516100e99190610dda565b60405180910390f35b61010c60048036038101906101079190610e95565b610356565b6040516101199190610ef0565b60405180910390f35b61012a610379565b6040516101379190610f1a565b60405180910390f35b61015a60048036038101906101559190610f35565b610383565b6040516101679190610ef0565b60405180910390f35b6101786103b2565b6040516101859190610fa1565b60405180910390f35b6101966103d9565b6040516101a39190610fd8565b60405180910390f35b6101b46103e2565b6040516101c19190610fa1565b60405180910390f35b6101e460048036038101906101df9190610ff3565b6103e8565b6040516101f19190610f1a565b60405180910390f35b610214600480360381019061020f9190610ff3565b610430565b6040516102219190610f1a565b60405180910390f35b610232610448565b60405161023f9190610dda565b60405180910390f35b610262600480360381019061025d9190610e95565b6104da565b60405161026f9190610ef0565b60405180910390f35b610292600480360381019061028d9190611078565b6104fd565b005b6102ae60048036038101906102a9919061111a565b610725565b6040516102bb9190610f1a565b60405180910390f35b6060600380546102d390611189565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff90611189565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b6000806103616107ac565b905061036e8185856107b4565b600191505092915050565b6000600254905090565b60008061038e6107ac565b905061039b8582856107c6565b6103a685858561085a565b60019150509392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b60006012905090565b60055481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60066020528060005260406000206000915090505481565b60606004805461045790611189565b80601f016020809104026020016040519081016040528092919081815260200182805461048390611189565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b6000806104e56107ac565b90506104f281858561085a565b600191505092915050565b42841015610540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053790611206565b60405180910390fd5b60006005547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600660008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906105bc90611255565b919050558a6040516020016105d6969594939291906112ac565b604051602081830303815290604052805190602001206040516020016105fd929190611385565b60405160208183030381529060405280519060200120905060006001828686866040516000815260200160405260405161063a94939291906113bc565b6020604051602081039080840390855afa15801561065c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156106d057508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61070f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107069061144d565b60405180910390fd5b61071a8989896107b4565b505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6107c1838383600161094e565b505050565b60006107d28484610725565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108545781811015610844578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161083b9392919061146d565b60405180910390fd5b6108538484848403600061094e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108cc5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108c391906114a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361093e5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161093591906114a4565b60405180910390fd5b610949838383610b25565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109c05760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109b791906114a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a325760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a2991906114a4565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610b1f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b169190610f1a565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b77578060026000828254610b6b91906114bf565b92505081905550610c4a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c03578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bfa9392919061146d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c935780600260008282540392505081905550610ce0565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d3d9190610f1a565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d84578082015181840152602081019050610d69565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dac82610d4a565b610db68185610d55565b9350610dc6818560208601610d66565b610dcf81610d90565b840191505092915050565b60006020820190508181036000830152610df48184610da1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e2c82610e01565b9050919050565b610e3c81610e21565b8114610e4757600080fd5b50565b600081359050610e5981610e33565b92915050565b6000819050919050565b610e7281610e5f565b8114610e7d57600080fd5b50565b600081359050610e8f81610e69565b92915050565b60008060408385031215610eac57610eab610dfc565b5b6000610eba85828601610e4a565b9250506020610ecb85828601610e80565b9150509250929050565b60008115159050919050565b610eea81610ed5565b82525050565b6000602082019050610f056000830184610ee1565b92915050565b610f1481610e5f565b82525050565b6000602082019050610f2f6000830184610f0b565b92915050565b600080600060608486031215610f4e57610f4d610dfc565b5b6000610f5c86828701610e4a565b9350506020610f6d86828701610e4a565b9250506040610f7e86828701610e80565b9150509250925092565b6000819050919050565b610f9b81610f88565b82525050565b6000602082019050610fb66000830184610f92565b92915050565b600060ff82169050919050565b610fd281610fbc565b82525050565b6000602082019050610fed6000830184610fc9565b92915050565b60006020828403121561100957611008610dfc565b5b600061101784828501610e4a565b91505092915050565b61102981610fbc565b811461103457600080fd5b50565b60008135905061104681611020565b92915050565b61105581610f88565b811461106057600080fd5b50565b6000813590506110728161104c565b92915050565b600080600080600080600060e0888a03121561109757611096610dfc565b5b60006110a58a828b01610e4a565b97505060206110b68a828b01610e4a565b96505060406110c78a828b01610e80565b95505060606110d88a828b01610e80565b94505060806110e98a828b01611037565b93505060a06110fa8a828b01611063565b92505060c061110b8a828b01611063565b91505092959891949750929550565b6000806040838503121561113157611130610dfc565b5b600061113f85828601610e4a565b925050602061115085828601610e4a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111a157607f821691505b6020821081036111b4576111b361115a565b5b50919050565b7f56414e3a3a7065726d69743a2065787069726564000000000000000000000000600082015250565b60006111f0601483610d55565b91506111fb826111ba565b602082019050919050565b6000602082019050818103600083015261121f816111e3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126082610e5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361129257611291611226565b5b600182019050919050565b6112a681610e21565b82525050565b600060c0820190506112c16000830189610f92565b6112ce602083018861129d565b6112db604083018761129d565b6112e86060830186610f0b565b6112f56080830185610f0b565b61130260a0830184610f0b565b979650505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061134e60028361130d565b915061135982611318565b600282019050919050565b6000819050919050565b61137f61137a82610f88565b611364565b82525050565b600061139082611341565b915061139c828561136e565b6020820191506113ac828461136e565b6020820191508190509392505050565b60006080820190506113d16000830187610f92565b6113de6020830186610fc9565b6113eb6040830185610f92565b6113f86060830184610f92565b95945050505050565b7f56414e3a3a7065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000611437601e83610d55565b915061144282611401565b602082019050919050565b600060208201905081810360008301526114668161142a565b9050919050565b6000606082019050611482600083018661129d565b61148f6020830185610f0b565b61149c6040830184610f0b565b949350505050565b60006020820190506114b9600083018461129d565b92915050565b60006114ca82610e5f565b91506114d583610e5f565b92508282019050808211156114ed576114ec611226565b5b9291505056fea264697066735822122094b4a8c7b29d5b6b2698b81654cb9de13b828ae2b9db988e60fb8357794c184864736f6c63430008140033