ERC-721
Overview
Max Total Supply
41 BDAY
Holders
38
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BDAYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BannyBirthday
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-16 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.6; /// @notice Modern, minimalist, and gas efficient ERC-721 implementation. /// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol) abstract contract ERC721 { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 indexed id); event Approval(address indexed owner, address indexed spender, uint256 indexed id); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /*////////////////////////////////////////////////////////////// METADATA STORAGE/LOGIC //////////////////////////////////////////////////////////////*/ string public name; string public symbol; function tokenURI(uint256 id) public view virtual returns (string memory); /*////////////////////////////////////////////////////////////// ERC721 BALANCE/OWNER STORAGE //////////////////////////////////////////////////////////////*/ mapping(uint256 => address) internal _ownerOf; mapping(address => uint256) internal _balanceOf; function ownerOf(uint256 id) public view virtual returns (address owner) { require((owner = _ownerOf[id]) != address(0), "NOT_MINTED"); } function balanceOf(address owner) public view virtual returns (uint256) { require(owner != address(0), "ZERO_ADDRESS"); return _balanceOf[owner]; } /*////////////////////////////////////////////////////////////// ERC721 APPROVAL STORAGE //////////////////////////////////////////////////////////////*/ mapping(uint256 => address) public getApproved; mapping(address => mapping(address => bool)) public isApprovedForAll; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(string memory _name, string memory _symbol) { name = _name; symbol = _symbol; } /*////////////////////////////////////////////////////////////// ERC721 LOGIC //////////////////////////////////////////////////////////////*/ function approve(address spender, uint256 id) public virtual { address owner = _ownerOf[id]; require(msg.sender == owner || isApprovedForAll[owner][msg.sender], "NOT_AUTHORIZED"); getApproved[id] = spender; emit Approval(owner, spender, id); } function setApprovalForAll(address operator, bool approved) public virtual { isApprovedForAll[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, operator, approved); } function transferFrom( address from, address to, uint256 id ) public virtual { require(from == _ownerOf[id], "WRONG_FROM"); require(to != address(0), "INVALID_RECIPIENT"); require( msg.sender == from || isApprovedForAll[from][msg.sender] || msg.sender == getApproved[id], "NOT_AUTHORIZED" ); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. unchecked { _balanceOf[from]--; _balanceOf[to]++; } _ownerOf[id] = to; delete getApproved[id]; emit Transfer(from, to, id); } function safeTransferFrom( address from, address to, uint256 id ) public virtual { transferFrom(from, to, id); require( to.code.length == 0 || ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, "") == ERC721TokenReceiver.onERC721Received.selector, "UNSAFE_RECIPIENT" ); } function safeTransferFrom( address from, address to, uint256 id, bytes calldata data ) public virtual { transferFrom(from, to, id); require( to.code.length == 0 || ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, data) == ERC721TokenReceiver.onERC721Received.selector, "UNSAFE_RECIPIENT" ); } /*////////////////////////////////////////////////////////////// ERC165 LOGIC //////////////////////////////////////////////////////////////*/ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165 interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721 interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 id) internal virtual { require(to != address(0), "INVALID_RECIPIENT"); require(_ownerOf[id] == address(0), "ALREADY_MINTED"); // Counter overflow is incredibly unrealistic. unchecked { _balanceOf[to]++; } _ownerOf[id] = to; emit Transfer(address(0), to, id); } function _burn(uint256 id) internal virtual { address owner = _ownerOf[id]; require(owner != address(0), "NOT_MINTED"); // Ownership check above ensures no underflow. unchecked { _balanceOf[owner]--; } delete _ownerOf[id]; delete getApproved[id]; emit Transfer(owner, address(0), id); } /*////////////////////////////////////////////////////////////// INTERNAL SAFE MINT LOGIC //////////////////////////////////////////////////////////////*/ function _safeMint(address to, uint256 id) internal virtual { _mint(to, id); require( to.code.length == 0 || ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, "") == ERC721TokenReceiver.onERC721Received.selector, "UNSAFE_RECIPIENT" ); } function _safeMint( address to, uint256 id, bytes memory data ) internal virtual { _mint(to, id); require( to.code.length == 0 || ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, data) == ERC721TokenReceiver.onERC721Received.selector, "UNSAFE_RECIPIENT" ); } } /// @notice A generic interface for a contract which properly accepts ERC721 tokens. /// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol) abstract contract ERC721TokenReceiver { function onERC721Received( address, address, uint256, bytes calldata ) external virtual returns (bytes4) { return ERC721TokenReceiver.onERC721Received.selector; } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount ) external returns (bool); } enum JBBallotState { Active, Approved, Failed } interface IJBFundingCycleBallot is IERC165 { function duration() external view returns (uint256); function stateOf( uint256 _projectId, uint256 _configuration, uint256 _start ) external view returns (JBBallotState); } /** @member number The funding cycle number for the cycle's project. Each funding cycle has a number that is an increment of the cycle that directly preceded it. Each project's first funding cycle has a number of 1. @member configuration The timestamp when the parameters for this funding cycle were configured. This value will stay the same for subsequent funding cycles that roll over from an originally configured cycle. @member basedOn The `configuration` of the funding cycle that was active when this cycle was created. @member start The timestamp marking the moment from which the funding cycle is considered active. It is a unix timestamp measured in seconds. @member duration The number of seconds the funding cycle lasts for, after which a new funding cycle will start. A duration of 0 means that the funding cycle will stay active until the project owner explicitly issues a reconfiguration, at which point a new funding cycle will immediately start with the updated properties. If the duration is greater than 0, a project owner cannot make changes to a funding cycle's parameters while it is active – any proposed changes will apply to the subsequent cycle. If no changes are proposed, a funding cycle rolls over to another one with the same properties but new `start` timestamp and a discounted `weight`. @member weight A fixed point number with 18 decimals that contracts can use to base arbitrary calculations on. For example, payment terminals can use this to determine how many tokens should be minted when a payment is received. @member discountRate A percent by how much the `weight` of the subsequent funding cycle should be reduced, if the project owner hasn't configured the subsequent funding cycle with an explicit `weight`. If it's 0, each funding cycle will have equal weight. If the number is 90%, the next funding cycle will have a 10% smaller weight. This weight is out of `JBConstants.MAX_DISCOUNT_RATE`. @member ballot An address of a contract that says whether a proposed reconfiguration should be accepted or rejected. It can be used to create rules around how a project owner can change funding cycle parameters over time. @member metadata Extra data that can be associated with a funding cycle. */ struct JBFundingCycle { uint256 number; uint256 configuration; uint256 basedOn; uint256 start; uint256 duration; uint256 weight; uint256 discountRate; IJBFundingCycleBallot ballot; uint256 metadata; } /** @member duration The number of seconds the funding cycle lasts for, after which a new funding cycle will start. A duration of 0 means that the funding cycle will stay active until the project owner explicitly issues a reconfiguration, at which point a new funding cycle will immediately start with the updated properties. If the duration is greater than 0, a project owner cannot make changes to a funding cycle's parameters while it is active – any proposed changes will apply to the subsequent cycle. If no changes are proposed, a funding cycle rolls over to another one with the same properties but new `start` timestamp and a discounted `weight`. @member weight A fixed point number with 18 decimals that contracts can use to base arbitrary calculations on. For example, payment terminals can use this to determine how many tokens should be minted when a payment is received. @member discountRate A percent by how much the `weight` of the subsequent funding cycle should be reduced, if the project owner hasn't configured the subsequent funding cycle with an explicit `weight`. If it's 0, each funding cycle will have equal weight. If the number is 90%, the next funding cycle will have a 10% smaller weight. This weight is out of `JBConstants.MAX_DISCOUNT_RATE`. @member ballot An address of a contract that says whether a proposed reconfiguration should be accepted or rejected. It can be used to create rules around how a project owner can change funding cycle parameters over time. */ struct JBFundingCycleData { uint256 duration; uint256 weight; uint256 discountRate; IJBFundingCycleBallot ballot; } interface IJBFundingCycleStore { event Configure( uint256 indexed configuration, uint256 indexed projectId, JBFundingCycleData data, uint256 metadata, uint256 mustStartAtOrAfter, address caller ); event Init(uint256 indexed configuration, uint256 indexed projectId, uint256 indexed basedOn); function latestConfigurationOf(uint256 _projectId) external view returns (uint256); function get(uint256 _projectId, uint256 _configuration) external view returns (JBFundingCycle memory); function latestConfiguredOf(uint256 _projectId) external view returns (JBFundingCycle memory fundingCycle, JBBallotState ballotState); function queuedOf(uint256 _projectId) external view returns (JBFundingCycle memory fundingCycle); function currentOf(uint256 _projectId) external view returns (JBFundingCycle memory fundingCycle); function currentBallotStateOf(uint256 _projectId) external view returns (JBBallotState); function configureFor( uint256 _projectId, JBFundingCycleData calldata _data, uint256 _metadata, uint256 _mustStartAtOrAfter ) external returns (JBFundingCycle memory fundingCycle); } interface IJBPaymentTerminal is IERC165 { function acceptsToken(address _token, uint256 _projectId) external view returns (bool); function currencyForToken(address _token) external view returns (uint256); function decimalsForToken(address _token) external view returns (uint256); // Return value must be a fixed point number with 18 decimals. function currentEthOverflowOf(uint256 _projectId) external view returns (uint256); function pay( uint256 _projectId, uint256 _amount, address _token, address _beneficiary, uint256 _minReturnedTokens, bool _preferClaimedTokens, string calldata _memo, bytes calldata _metadata ) external payable returns (uint256 beneficiaryTokenCount); function addToBalanceOf( uint256 _projectId, uint256 _amount, address _token, string calldata _memo, bytes calldata _metadata ) external payable; } // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } /** @member content The metadata content. @member domain The domain within which the metadata applies. */ struct JBProjectMetadata { string content; uint256 domain; } interface IJBTokenUriResolver { function getUri(uint256 _projectId) external view returns (string memory tokenUri); } interface IJBProjects is IERC721 { event Create( uint256 indexed projectId, address indexed owner, JBProjectMetadata metadata, address caller ); event SetMetadata(uint256 indexed projectId, JBProjectMetadata metadata, address caller); event SetTokenUriResolver(IJBTokenUriResolver indexed resolver, address caller); function count() external view returns (uint256); function metadataContentOf(uint256 _projectId, uint256 _domain) external view returns (string memory); function tokenUriResolver() external view returns (IJBTokenUriResolver); function createFor(address _owner, JBProjectMetadata calldata _metadata) external returns (uint256 projectId); function setMetadataOf(uint256 _projectId, JBProjectMetadata calldata _metadata) external; function setTokenUriResolver(IJBTokenUriResolver _newResolver) external; } interface IJBDirectory { event SetController(uint256 indexed projectId, address indexed controller, address caller); event AddTerminal(uint256 indexed projectId, IJBPaymentTerminal indexed terminal, address caller); event SetTerminals(uint256 indexed projectId, IJBPaymentTerminal[] terminals, address caller); event SetPrimaryTerminal( uint256 indexed projectId, address indexed token, IJBPaymentTerminal indexed terminal, address caller ); event SetIsAllowedToSetFirstController(address indexed addr, bool indexed flag, address caller); function projects() external view returns (IJBProjects); function fundingCycleStore() external view returns (IJBFundingCycleStore); function controllerOf(uint256 _projectId) external view returns (address); function isAllowedToSetFirstController(address _address) external view returns (bool); function terminalsOf(uint256 _projectId) external view returns (IJBPaymentTerminal[] memory); function isTerminalOf(uint256 _projectId, IJBPaymentTerminal _terminal) external view returns (bool); function primaryTerminalOf(uint256 _projectId, address _token) external view returns (IJBPaymentTerminal); function setControllerOf(uint256 _projectId, address _controller) external; function setTerminalsOf(uint256 _projectId, IJBPaymentTerminal[] calldata _terminals) external; function setPrimaryTerminalOf( uint256 _projectId, address _token, IJBPaymentTerminal _terminal ) external; function setIsAllowedToSetFirstController(address _address, bool _flag) external; } interface IJBProjectPayer is IERC165 { event SetDefaultValues( uint256 indexed projectId, address indexed beneficiary, bool preferClaimedTokens, string memo, bytes metadata, bool preferAddToBalance, address caller ); function directory() external view returns (IJBDirectory); function defaultProjectId() external view returns (uint256); function defaultBeneficiary() external view returns (address payable); function defaultPreferClaimedTokens() external view returns (bool); function defaultMemo() external view returns (string memory); function defaultMetadata() external view returns (bytes memory); function defaultPreferAddToBalance() external view returns (bool); function setDefaultValues( uint256 _projectId, address payable _beneficiary, bool _preferClaimedTokens, string memory _memo, bytes memory _metadata, bool _defaultPreferAddToBalance ) external; function pay( uint256 _projectId, address _token, uint256 _amount, uint256 _decimals, address _beneficiary, uint256 _minReturnedTokens, bool _preferClaimedTokens, string memory _memo, bytes memory _metadata ) external payable; function addToBalanceOf( uint256 _projectId, address _token, uint256 _amount, uint256 _decimals, string memory _memo, bytes memory _metadata ) external payable; receive() external payable; } library JBTokens { /** @notice The ETH token address in Juicebox is represented by 0x000000000000000000000000000000000000EEEe. */ address public constant ETH = address(0x000000000000000000000000000000000000EEEe); } /** @notice Sends ETH or ERC20's to a project treasury as it receives direct payments or has it's functions called. @dev Inherit from this contract or borrow from its logic to forward ETH or ERC20's to project treasuries from within other contracts. @dev Adheres to - IJBProjectPayer: General interface for the methods in this contract that interact with the blockchain's state according to the protocol's rules. @dev Inherits from - Ownable: Includes convenience functionality for checking a message sender's permissions before executing certain transactions. ERC165: Introspection on interface adherance. */ contract JBETHERC20ProjectPayer is Ownable, ERC165, IJBProjectPayer { //*********************************************************************// // -------------------------- custom errors -------------------------- // //*********************************************************************// error INCORRECT_DECIMAL_AMOUNT(); error NO_MSG_VALUE_ALLOWED(); error TERMINAL_NOT_FOUND(); //*********************************************************************// // ---------------- public immutable stored properties --------------- // //*********************************************************************// /** @notice A contract storing directories of terminals and controllers for each project. */ IJBDirectory public immutable override directory; //*********************************************************************// // --------------------- public stored properties -------------------- // //*********************************************************************// /** @notice The ID of the project that should be used to forward this contract's received payments. */ uint256 public override defaultProjectId; /** @notice The beneficiary that should be used in the payment made when this contract receives payments. */ address payable public override defaultBeneficiary; /** @notice A flag indicating whether issued tokens should be automatically claimed into the beneficiary's wallet. Leaving tokens unclaimed saves gas. */ bool public override defaultPreferClaimedTokens; /** @notice The memo that should be used in the payment made when this contract receives payments. */ string public override defaultMemo; /** @notice The metadata that should be used in the payment made when this contract receives payments. */ bytes public override defaultMetadata; /** @notice A flag indicating if received payments should call the `pay` function or the `addToBalance` function of a project. */ bool public override defaultPreferAddToBalance; //*********************************************************************// // ------------------------- public views -------------------------- // //*********************************************************************// /** @notice Indicates if this contract adheres to the specified interface. @dev See {IERC165-supportsInterface}. @param _interfaceId The ID of the interface to check for adherance to. */ function supportsInterface(bytes4 _interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return _interfaceId == type(IJBProjectPayer).interfaceId || super.supportsInterface(_interfaceId); } //*********************************************************************// // -------------------------- constructor ---------------------------- // //*********************************************************************// /** @param _defaultProjectId The ID of the project whose treasury should be forwarded this contract's received payments. @param _defaultBeneficiary The address that'll receive the project's tokens. @param _defaultPreferClaimedTokens A flag indicating whether issued tokens should be automatically claimed into the beneficiary's wallet. @param _defaultMemo A memo to pass along to the emitted event, and passed along the the funding cycle's data source and delegate. A data source can alter the memo before emitting in the event and forwarding to the delegate. @param _defaultMetadata Bytes to send along to the project's data source and delegate, if provided. @param _defaultPreferAddToBalance A flag indicating if received payments should call the `pay` function or the `addToBalance` function of a project. @param _directory A contract storing directories of terminals and controllers for each project. @param _owner The address that will own the contract. */ constructor( uint256 _defaultProjectId, address payable _defaultBeneficiary, bool _defaultPreferClaimedTokens, string memory _defaultMemo, bytes memory _defaultMetadata, bool _defaultPreferAddToBalance, IJBDirectory _directory, address _owner ) { defaultProjectId = _defaultProjectId; defaultBeneficiary = _defaultBeneficiary; defaultPreferClaimedTokens = _defaultPreferClaimedTokens; defaultMemo = _defaultMemo; defaultMetadata = _defaultMetadata; defaultPreferAddToBalance = _defaultPreferAddToBalance; directory = _directory; _transferOwnership(_owner); } //*********************************************************************// // ------------------------- default receive ------------------------- // //*********************************************************************// /** @notice Received funds are paid to the default project ID using the stored default properties. @dev Use the `addToBalance` function if there's a preference to do so. Otherwise use `pay`. @dev This function is called automatically when the contract receives an ETH payment. */ receive() external payable virtual override { if (defaultPreferAddToBalance) _addToBalanceOf( defaultProjectId, JBTokens.ETH, address(this).balance, 18, // balance is a fixed point number with 18 decimals. defaultMemo, defaultMetadata ); else _pay( defaultProjectId, JBTokens.ETH, address(this).balance, 18, // balance is a fixed point number with 18 decimals. defaultBeneficiary == address(0) ? msg.sender : defaultBeneficiary, 0, // Can't determine expectation of returned tokens ahead of time. defaultPreferClaimedTokens, defaultMemo, defaultMetadata ); } //*********************************************************************// // ---------------------- external transactions ---------------------- // //*********************************************************************// /** @notice Sets the default values that determine how to interact with a protocol treasury when this contract receives ETH directly. @param _projectId The ID of the project whose treasury should be forwarded this contract's received payments. @param _beneficiary The address that'll receive the project's tokens. @param _preferClaimedTokens A flag indicating whether issued tokens should be automatically claimed into the beneficiary's wallet. @param _memo The memo that'll be used. @param _metadata The metadata that'll be sent. @param _defaultPreferAddToBalance A flag indicating if received payments should call the `pay` function or the `addToBalance` function of a project. */ function setDefaultValues( uint256 _projectId, address payable _beneficiary, bool _preferClaimedTokens, string memory _memo, bytes memory _metadata, bool _defaultPreferAddToBalance ) external virtual override onlyOwner { // Set the default project ID if it has changed. if (_projectId != defaultProjectId) defaultProjectId = _projectId; // Set the default beneficiary if it has changed. if (_beneficiary != defaultBeneficiary) defaultBeneficiary = _beneficiary; // Set the default claimed token preference if it has changed. if (_preferClaimedTokens != defaultPreferClaimedTokens) defaultPreferClaimedTokens = _preferClaimedTokens; // Set the default memo if it has changed. if (keccak256(abi.encodePacked(_memo)) != keccak256(abi.encodePacked(defaultMemo))) defaultMemo = _memo; // Set the default metadata if it has changed. if (keccak256(abi.encodePacked(_metadata)) != keccak256(abi.encodePacked(defaultMetadata))) defaultMetadata = _metadata; // Set the add to balance preference if it has changed. if (_defaultPreferAddToBalance != defaultPreferAddToBalance) defaultPreferAddToBalance = _defaultPreferAddToBalance; emit SetDefaultValues( _projectId, _beneficiary, _preferClaimedTokens, _memo, _metadata, _defaultPreferAddToBalance, msg.sender ); } //*********************************************************************// // ----------------------- public transactions ----------------------- // //*********************************************************************// /** @notice Make a payment to the specified project. @param _projectId The ID of the project that is being paid. @param _token The token being paid in. @param _amount The amount of tokens being paid, as a fixed point number. If the token is ETH, this is ignored and msg.value is used in its place. @param _decimals The number of decimals in the `_amount` fixed point number. If the token is ETH, this is ignored and 18 is used in its place, which corresponds to the amount of decimals expected in msg.value. @param _beneficiary The address who will receive tokens from the payment. @param _minReturnedTokens The minimum number of project tokens expected in return, as a fixed point number with 18 decimals. @param _preferClaimedTokens A flag indicating whether the request prefers to mint project tokens into the beneficiaries wallet rather than leaving them unclaimed. This is only possible if the project has an attached token contract. Leaving them unclaimed saves gas. @param _memo A memo to pass along to the emitted event, and passed along the the funding cycle's data source and delegate. A data source can alter the memo before emitting in the event and forwarding to the delegate. @param _metadata Bytes to send along to the data source, delegate, and emitted event, if provided. */ function pay( uint256 _projectId, address _token, uint256 _amount, uint256 _decimals, address _beneficiary, uint256 _minReturnedTokens, bool _preferClaimedTokens, string calldata _memo, bytes calldata _metadata ) public payable virtual override { // ETH shouldn't be sent if the token isn't ETH. if (address(_token) != JBTokens.ETH) { if (msg.value > 0) revert NO_MSG_VALUE_ALLOWED(); // Transfer tokens to this contract from the msg sender. IERC20(_token).transferFrom(msg.sender, address(this), _amount); } else { // If ETH is being paid, set the amount to the message value, and decimals to 18. _amount = msg.value; _decimals = 18; } _pay( _projectId, _token, _amount, _decimals, _beneficiary, _minReturnedTokens, _preferClaimedTokens, _memo, _metadata ); } /** @notice Add to the balance of the specified project. @param _projectId The ID of the project that is being paid. @param _token The token being paid in. @param _amount The amount of tokens being paid, as a fixed point number. If the token is ETH, this is ignored and msg.value is used in its place. @param _decimals The number of decimals in the `_amount` fixed point number. If the token is ETH, this is ignored and 18 is used in its place, which corresponds to the amount of decimals expected in msg.value. @param _memo A memo to pass along to the emitted event. @param _metadata Extra data to pass along to the terminal. */ function addToBalanceOf( uint256 _projectId, address _token, uint256 _amount, uint256 _decimals, string calldata _memo, bytes calldata _metadata ) public payable virtual override { // ETH shouldn't be sent if the token isn't ETH. if (address(_token) != JBTokens.ETH) { if (msg.value > 0) revert NO_MSG_VALUE_ALLOWED(); // Transfer tokens to this contract from the msg sender. IERC20(_token).transferFrom(msg.sender, address(this), _amount); } else { // If ETH is being paid, set the amount to the message value, and decimals to 18. _amount = msg.value; _decimals = 18; } _addToBalanceOf(_projectId, _token, _amount, _decimals, _memo, _metadata); } //*********************************************************************// // ---------------------- internal transactions ---------------------- // //*********************************************************************// /** @notice Make a payment to the specified project. @param _projectId The ID of the project that is being paid. @param _token The token being paid in. @param _amount The amount of tokens being paid, as a fixed point number. @param _decimals The number of decimals in the `_amount` fixed point number. @param _beneficiary The address who will receive tokens from the payment. @param _minReturnedTokens The minimum number of project tokens expected in return, as a fixed point number with 18 decimals. @param _preferClaimedTokens A flag indicating whether the request prefers to mint project tokens into the beneficiaries wallet rather than leaving them unclaimed. This is only possible if the project has an attached token contract. Leaving them unclaimed saves gas. @param _memo A memo to pass along to the emitted event, and passed along the the funding cycle's data source and delegate. A data source can alter the memo before emitting in the event and forwarding to the delegate. @param _metadata Bytes to send along to the data source and delegate, if provided. */ function _pay( uint256 _projectId, address _token, uint256 _amount, uint256 _decimals, address _beneficiary, uint256 _minReturnedTokens, bool _preferClaimedTokens, string memory _memo, bytes memory _metadata ) internal virtual { // Find the terminal for the specified project. IJBPaymentTerminal _terminal = directory.primaryTerminalOf(_projectId, _token); // There must be a terminal. if (_terminal == IJBPaymentTerminal(address(0))) revert TERMINAL_NOT_FOUND(); // The amount's decimals must match the terminal's expected decimals. if (_terminal.decimalsForToken(_token) != _decimals) revert INCORRECT_DECIMAL_AMOUNT(); // Approve the `_amount` of tokens from the destination terminal to transfer tokens from this contract. if (_token != JBTokens.ETH) IERC20(_token).approve(address(_terminal), _amount); // If the token is ETH, send it in msg.value. uint256 _payableValue = _token == JBTokens.ETH ? _amount : 0; // Send funds to the terminal. // If the token is ETH, send it in msg.value. _terminal.pay{value: _payableValue}( _projectId, _amount, // ignored if the token is JBTokens.ETH. _token, _beneficiary != address(0) ? _beneficiary : msg.sender, _minReturnedTokens, _preferClaimedTokens, _memo, _metadata ); } /** @notice Add to the balance of the specified project. @param _projectId The ID of the project that is being paid. @param _token The token being paid in. @param _amount The amount of tokens being paid, as a fixed point number. If the token is ETH, this is ignored and msg.value is used in its place. @param _decimals The number of decimals in the `_amount` fixed point number. If the token is ETH, this is ignored and 18 is used in its place, which corresponds to the amount of decimals expected in msg.value. @param _memo A memo to pass along to the emitted event. @param _metadata Extra data to pass along to the terminal. */ function _addToBalanceOf( uint256 _projectId, address _token, uint256 _amount, uint256 _decimals, string memory _memo, bytes memory _metadata ) internal virtual { // Find the terminal for the specified project. IJBPaymentTerminal _terminal = directory.primaryTerminalOf(_projectId, _token); // There must be a terminal. if (_terminal == IJBPaymentTerminal(address(0))) revert TERMINAL_NOT_FOUND(); // The amount's decimals must match the terminal's expected decimals. if (_terminal.decimalsForToken(_token) != _decimals) revert INCORRECT_DECIMAL_AMOUNT(); // Approve the `_amount` of tokens from the destination terminal to transfer tokens from this contract. if (_token != JBTokens.ETH) IERC20(_token).approve(address(_terminal), _amount); // If the token is ETH, send it in msg.value. uint256 _payableValue = _token == JBTokens.ETH ? _amount : 0; // Add to balance so tokens don't get issued. _terminal.addToBalanceOf{value: _payableValue}(_projectId, _amount, _token, _memo, _metadata); } } contract BannyBirthday is ERC721, JBETHERC20ProjectPayer { uint256 public totalSupply; string private metadata; uint256 private immutable deadline; uint256 private immutable projectId; constructor( string memory _name, string memory _symbol, address _jbdirectory, uint256 _projectId, address _beneficiary, string memory _metadata, uint256 _deadline // 1657972800 last time it'll be July 15 anywhere in the world ) ERC721(_name, _symbol) JBETHERC20ProjectPayer( _projectId, payable(_beneficiary), false, "happy birthday Banny! https://jbx.mypinata.cloud/ipfs/QmTLnhYt7vMe8Zhui7WZjgiFjZwFWicnS2KLMFUtzJLtgW", "", false, IJBDirectory(_jbdirectory), address(this) ) { projectId = _projectId; metadata = _metadata; deadline = _deadline; } function mint() external payable { require(msg.value >= 0.001 ether, "must donate moar"); require(block.timestamp < deadline); _pay( projectId, //uint256 _projectId,` JBTokens.ETH, // address _token msg.value, //uint256 _amount, 18, //uint256 _decimals, msg.sender, //address _beneficiary, 0, //uint256 _minReturnedTokens, false, //bool _preferClaimedTokens, "happy birthday Banny! https://jbx.mypinata.cloud/ipfs/QmTLnhYt7vMe8Zhui7WZjgiFjZwFWicnS2KLMFUtzJLtgW", //string calldata _memo, TODO Swap this for IPFS of the bday image "" //bytes calldata _metadata ); unchecked { ++totalSupply; } _mint(msg.sender, totalSupply); } function tokenURI(uint256 tokenId) public view virtual override(ERC721) returns (string memory) { return metadata; } function supportsInterface(bytes4 interfaceId) public view override(ERC721, JBETHERC20ProjectPayer) returns (bool) { return JBETHERC20ProjectPayer.supportsInterface(interfaceId) || ERC721.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_jbdirectory","type":"address"},{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"string","name":"_metadata","type":"string"},{"internalType":"uint256","name":"_deadline","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"INCORRECT_DECIMAL_AMOUNT","type":"error"},{"inputs":[],"name":"NO_MSG_VALUE_ALLOWED","type":"error"},{"inputs":[],"name":"TERMINAL_NOT_FOUND","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId","type":"uint256"},{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"bool","name":"preferClaimedTokens","type":"bool"},{"indexed":false,"internalType":"string","name":"memo","type":"string"},{"indexed":false,"internalType":"bytes","name":"metadata","type":"bytes"},{"indexed":false,"internalType":"bool","name":"preferAddToBalance","type":"bool"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"SetDefaultValues","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_decimals","type":"uint256"},{"internalType":"string","name":"_memo","type":"string"},{"internalType":"bytes","name":"_metadata","type":"bytes"}],"name":"addToBalanceOf","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultBeneficiary","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultMemo","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultMetadata","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultPreferAddToBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultPreferClaimedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultProjectId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"directory","outputs":[{"internalType":"contract IJBDirectory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_decimals","type":"uint256"},{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint256","name":"_minReturnedTokens","type":"uint256"},{"internalType":"bool","name":"_preferClaimedTokens","type":"bool"},{"internalType":"string","name":"_memo","type":"string"},{"internalType":"bytes","name":"_metadata","type":"bytes"}],"name":"pay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address payable","name":"_beneficiary","type":"address"},{"internalType":"bool","name":"_preferClaimedTokens","type":"bool"},{"internalType":"string","name":"_memo","type":"string"},{"internalType":"bytes","name":"_metadata","type":"bytes"},{"internalType":"bool","name":"_defaultPreferAddToBalance","type":"bool"}],"name":"setDefaultValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040523480156200001157600080fd5b5060405162004b3538038062004b358339818101604052810190620000379190620004ae565b838360006040518060a001604052806064815260200162004ad1606491396040518060200160405280600081525060008a308e8e816000908051906020019062000083929190620002c1565b5080600190805190602001906200009c929190620002c1565b505050620000bf620000b3620001f360201b60201c565b620001fb60201b60201c565b8760078190555086600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600860146101000a81548160ff021916908315150217905550846009908051906020019062000139929190620002c1565b5083600a90805190602001906200015292919062000352565b5082600b60006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050620001b581620001fb60201b60201c565b50505050505050508360c0818152505081600d9080519060200190620001dd929190620002c1565b508060a0818152505050505050505050620007b4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002cf9062000691565b90600052602060002090601f016020900481019282620002f357600085556200033f565b82601f106200030e57805160ff19168380011785556200033f565b828001600101855582156200033f579182015b828111156200033e57825182559160200191906001019062000321565b5b5090506200034e9190620003e3565b5090565b828054620003609062000691565b90600052602060002090601f016020900481019282620003845760008555620003d0565b82601f106200039f57805160ff1916838001178555620003d0565b82800160010185558215620003d0579182015b82811115620003cf578251825591602001919060010190620003b2565b5b509050620003df9190620003e3565b5090565b5b80821115620003fe576000816000905550600101620003e4565b5090565b6000620004196200041384620005e7565b620005be565b90508281526020810184848401111562000438576200043762000760565b5b620004458482856200065b565b509392505050565b6000815190506200045e8162000780565b92915050565b600082601f8301126200047c576200047b6200075b565b5b81516200048e84826020860162000402565b91505092915050565b600081519050620004a8816200079a565b92915050565b600080600080600080600060e0888a031215620004d057620004cf6200076a565b5b600088015167ffffffffffffffff811115620004f157620004f062000765565b5b620004ff8a828b0162000464565b975050602088015167ffffffffffffffff81111562000523576200052262000765565b5b620005318a828b0162000464565b9650506040620005448a828b016200044d565b9550506060620005578a828b0162000497565b94505060806200056a8a828b016200044d565b93505060a088015167ffffffffffffffff8111156200058e576200058d62000765565b5b6200059c8a828b0162000464565b92505060c0620005af8a828b0162000497565b91505092959891949750929550565b6000620005ca620005dd565b9050620005d88282620006c7565b919050565b6000604051905090565b600067ffffffffffffffff8211156200060557620006046200072c565b5b62000610826200076f565b9050602081019050919050565b60006200062a8262000631565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200067b5780820151818401526020810190506200065e565b838111156200068b576000848401525b50505050565b60006002820490506001821680620006aa57607f821691505b60208210811415620006c157620006c0620006fd565b5b50919050565b620006d2826200076f565b810181811067ffffffffffffffff82111715620006f457620006f36200072c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200078b816200061d565b81146200079757600080fd5b50565b620007a58162000651565b8114620007b157600080fd5b50565b60805160601c60a05160c0516142dc620007f560003960006117e2015260006117b301526000818161098501528181610ce0015261254101526142dc6000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a4919eb11161008a578063c41c2f2411610064578063c41c2f24146108b3578063c87b56dd146108de578063e985e9c51461091b578063f2fde38b14610958576104bd565b8063a4919eb114610834578063b88d4fde1461085f578063b96053df14610888576104bd565b80638da5cb5b116100c65780638da5cb5b1461078a57806393b7f154146107b557806395d89b41146107e0578063a22cb4651461080b576104bd565b8063715018a61461072c5780637e646549146107435780638293fee61461076e576104bd565b806318160ddd1161015957806342842e0e1161013357806342842e0e1461065e57806354ab58af146106875780636352211e146106b257806370a08231146106ef576104bd565b806318160ddd146105df57806323b872dd1461060a5780633ce9830b14610633576104bd565b8063095ea7b311610195578063095ea7b31461056757806309a6b7e5146105905780630e45f78e146105ac5780631249c58b146105d5576104bd565b806301ffc9a7146104c257806306fdde03146104ff578063081812fc1461052a576104bd565b366104bd57600b60009054906101000a900460ff1615610301576102fc60075461eeee476012600980546101ee90613f05565b80601f016020809104026020016040519081016040528092919081815260200182805461021a90613f05565b80156102675780601f1061023c57610100808354040283529160200191610267565b820191906000526020600020905b81548152906001019060200180831161024a57829003601f168201915b5050505050600a805461027990613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546102a590613f05565b80156102f25780601f106102c7576101008083540402835291602001916102f2565b820191906000526020600020905b8154815290600101906020018083116102d557829003601f168201915b5050505050610981565b6104bb565b6104ba60075461eeee476012600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461038b57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661038d565b335b6000600860149054906101000a900460ff16600980546103ac90613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546103d890613f05565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050600a805461043790613f05565b80601f016020809104026020016040519081016040528092919081815260200182805461046390613f05565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050610cdc565b5b005b600080fd5b3480156104ce57600080fd5b506104e960048036038101906104e491906130e6565b61109d565b6040516104f691906139bc565b60405180910390f35b34801561050b57600080fd5b506105146110bf565b6040516105219190613a75565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061316d565b61114d565b60405161055e919061388e565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190613079565b611180565b005b6105aa60048036038101906105a59190613398565b611369565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906131c7565b611516565b005b6105dd611767565b005b3480156105eb57600080fd5b506105f4611857565b6040516106019190613bd7565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612f5e565b61185d565b005b34801561063f57600080fd5b50610648611c5d565b6040516106559190613bd7565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612f5e565b611c63565b005b34801561069357600080fd5b5061069c611daa565b6040516106a991906138a9565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d4919061316d565b611dd0565b6040516106e6919061388e565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612ef1565b611e7c565b6040516107239190613bd7565b60405180910390f35b34801561073857600080fd5b50610741611f34565b005b34801561074f57600080fd5b50610758611f48565b6040516107659190613a38565b60405180910390f35b6107886004803603810190610783919061328c565b611fd6565b005b34801561079657600080fd5b5061079f612189565b6040516107ac919061388e565b60405180910390f35b3480156107c157600080fd5b506107ca6121b3565b6040516107d791906139bc565b60405180910390f35b3480156107ec57600080fd5b506107f56121c6565b6040516108029190613a75565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613039565b612254565b005b34801561084057600080fd5b50610849612351565b60405161085691906139bc565b60405180910390f35b34801561086b57600080fd5b5061088660048036038101906108819190612fb1565b612364565b005b34801561089457600080fd5b5061089d6124b1565b6040516108aa9190613a75565b60405180910390f35b3480156108bf57600080fd5b506108c861253f565b6040516108d59190613a5a565b60405180910390f35b3480156108ea57600080fd5b506109056004803603810190610900919061316d565b612563565b6040516109129190613a75565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190612f1e565b6125f7565b60405161094f91906139bc565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a9190612ef1565b612626565b005b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638620265088886040518363ffffffff1660e01b81526004016109de929190613bf2565b60206040518083038186803b1580156109f657600080fd5b505afa158015610a0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2e9190613140565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a97576040517ffba10dd600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b838173ffffffffffffffffffffffffffffffffffffffff1663b7bad1b1886040518263ffffffff1660e01b8152600401610ad1919061388e565b60206040518083038186803b158015610ae957600080fd5b505afa158015610afd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b21919061319a565b14610b58576040517fb972592400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61eeee73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614610c1c578573ffffffffffffffffffffffffffffffffffffffff1663095ea7b382876040518363ffffffff1660e01b8152600401610bc8929190613993565b602060405180830381600087803b158015610be257600080fd5b505af1158015610bf6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1a91906130b9565b505b600061eeee73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614610c5a576000610c5c565b855b90508173ffffffffffffffffffffffffffffffffffffffff16630cf8e858828a898b89896040518763ffffffff1660e01b8152600401610ca0959493929190613ca7565b6000604051808303818588803b158015610cb957600080fd5b505af1158015610ccd573d6000803e3d6000fd5b50505050505050505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663862026508b8b6040518363ffffffff1660e01b8152600401610d39929190613bf2565b60206040518083038186803b158015610d5157600080fd5b505afa158015610d65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d899190613140565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df2576040517ffba10dd600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b868173ffffffffffffffffffffffffffffffffffffffff1663b7bad1b18b6040518263ffffffff1660e01b8152600401610e2c919061388e565b60206040518083038186803b158015610e4457600080fd5b505afa158015610e58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7c919061319a565b14610eb3576040517fb972592400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61eeee73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614610f77578873ffffffffffffffffffffffffffffffffffffffff1663095ea7b3828a6040518363ffffffff1660e01b8152600401610f23929190613993565b602060405180830381600087803b158015610f3d57600080fd5b505af1158015610f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7591906130b9565b505b600061eeee73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614610fb5576000610fb7565b885b90508173ffffffffffffffffffffffffffffffffffffffff16631ebc263f828d8c8e600073ffffffffffffffffffffffffffffffffffffffff168d73ffffffffffffffffffffffffffffffffffffffff1614156110145733611016565b8c5b8c8c8c8c6040518a63ffffffff1660e01b815260040161103d989796959493929190613c1b565b6020604051808303818588803b15801561105657600080fd5b505af115801561106a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061108f919061319a565b505050505050505050505050565b60006110a8826126aa565b806110b857506110b782612724565b5b9050919050565b600080546110cc90613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546110f890613f05565b80156111455780601f1061111a57610100808354040283529160200191611145565b820191906000526020600020905b81548152906001019060200180831161112857829003601f168201915b505050505081565b60046020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112785750600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613b77565b60405180910390fd5b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61eeee73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161461146e5760003411156113d9576040517fbcfd35be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330896040518463ffffffff1660e01b8152600401611416939291906138c4565b602060405180830381600087803b15801561143057600080fd5b505af1158015611444573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146891906130b9565b50611476565b349550601294505b61150c8888888888888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505087878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610981565b5050505050505050565b61151e6127b6565b600754861461152f57856007819055505b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146115c65784600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600860149054906101000a900460ff161515841515146115fb5783600860146101000a81548160ff0219169083151502179055505b600960405160200161160d9190613877565b60405160208183030381529060405280519060200120836040516020016116349190613860565b6040516020818303038152906040528051906020012014611667578260099080519060200190611665929190612b7f565b505b600a6040516020016116799190613849565b60405160208183030381529060405280519060200120826040516020016116a09190613832565b60405160208183030381529060405280519060200120146116d35781600a90805190602001906116d1929190612c05565b505b600b60009054906101000a900460ff161515811515146117085780600b60006101000a81548160ff0219169083151502179055505b8473ffffffffffffffffffffffffffffffffffffffff16867f36b1c5cef608e320317b9ee5155756634c65fe7055b424ce57e2f6c59eec794786868686336040516117579594939291906139d7565b60405180910390a3505050505050565b66038d7ea4c680003410156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890613af7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000042106117dd57600080fd5b6118397f000000000000000000000000000000000000000000000000000000000000000061eeee346012336000806040518060a00160405280606481526020016142436064913960405180602001604052806000815250610cdc565b600c600081546001019190508190555061185533600c54612834565b565b600c5481565b6002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613bb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590613ab7565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611a2e5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611a9757506004600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd90613b77565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60075481565b611c6e83838361185d565b60008273ffffffffffffffffffffffffffffffffffffffff163b1480611d66575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401611cf393929190613949565b602060405180830381600087803b158015611d0d57600080fd5b505af1158015611d21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d459190613113565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90613b17565b60405180910390fd5b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691508173ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90613b97565b60405180910390fd5b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490613ad7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611f3c6127b6565b611f466000612a47565b565b600a8054611f5590613f05565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8190613f05565b8015611fce5780601f10611fa357610100808354040283529160200191611fce565b820191906000526020600020905b815481529060010190602001808311611fb157829003601f168201915b505050505081565b61eeee73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16146120db576000341115612046576040517fbcfd35be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd33308c6040518463ffffffff1660e01b8152600401612083939291906138c4565b602060405180830381600087803b15801561209d57600080fd5b505af11580156120b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d591906130b9565b506120e3565b349850601297505b61217c8b8b8b8b8b8b8b8b8b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610cdc565b5050505050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900460ff1681565b600180546121d390613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546121ff90613f05565b801561224c5780601f106122215761010080835404028352916020019161224c565b820191906000526020600020905b81548152906001019060200180831161222f57829003601f168201915b505050505081565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234591906139bc565b60405180910390a35050565b600860149054906101000a900460ff1681565b61236f85858561185d565b60008473ffffffffffffffffffffffffffffffffffffffff163b148061246b575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016123f89594939291906138fb565b602060405180830381600087803b15801561241257600080fd5b505af1158015612426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061244a9190613113565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b6124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a190613b17565b60405180910390fd5b5050505050565b600980546124be90613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546124ea90613f05565b80156125375780601f1061250c57610100808354040283529160200191612537565b820191906000526020600020905b81548152906001019060200180831161251a57829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600d805461257290613f05565b80601f016020809104026020016040519081016040528092919081815260200182805461259e90613f05565b80156125eb5780601f106125c0576101008083540402835291602001916125eb565b820191906000526020600020905b8154815290600101906020018083116125ce57829003601f168201915b50505050509050919050565b60056020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61262e6127b6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561269e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269590613a97565b60405180910390fd5b6126a781612a47565b50565b60007fd90c137e000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271d575061271c82612b0d565b5b9050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061277f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6127be612b77565b73ffffffffffffffffffffffffffffffffffffffff166127dc612189565b73ffffffffffffffffffffffffffffffffffffffff1614612832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282990613b37565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289b90613ab7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90613b57565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b828054612b8b90613f05565b90600052602060002090601f016020900481019282612bad5760008555612bf4565b82601f10612bc657805160ff1916838001178555612bf4565b82800160010185558215612bf4579182015b82811115612bf3578251825591602001919060010190612bd8565b5b509050612c019190612c8b565b5090565b828054612c1190613f05565b90600052602060002090601f016020900481019282612c335760008555612c7a565b82601f10612c4c57805160ff1916838001178555612c7a565b82800160010185558215612c7a579182015b82811115612c79578251825591602001919060010190612c5e565b5b509050612c879190612c8b565b5090565b5b80821115612ca4576000816000905550600101612c8c565b5090565b6000612cbb612cb684613d2d565b613d08565b905082815260208101848484011115612cd757612cd6613fd5565b5b612ce2848285613ec3565b509392505050565b6000612cfd612cf884613d5e565b613d08565b905082815260208101848484011115612d1957612d18613fd5565b5b612d24848285613ec3565b509392505050565b600081359050612d3b816141b8565b92915050565b600081359050612d50816141cf565b92915050565b600081359050612d65816141e6565b92915050565b600081519050612d7a816141e6565b92915050565b600081359050612d8f816141fd565b92915050565b600081519050612da4816141fd565b92915050565b60008083601f840112612dc057612dbf613fcb565b5b8235905067ffffffffffffffff811115612ddd57612ddc613fc6565b5b602083019150836001820283011115612df957612df8613fd0565b5b9250929050565b600082601f830112612e1557612e14613fcb565b5b8135612e25848260208601612ca8565b91505092915050565b600081519050612e3d81614214565b92915050565b60008083601f840112612e5957612e58613fcb565b5b8235905067ffffffffffffffff811115612e7657612e75613fc6565b5b602083019150836001820283011115612e9257612e91613fd0565b5b9250929050565b600082601f830112612eae57612ead613fcb565b5b8135612ebe848260208601612cea565b91505092915050565b600081359050612ed68161422b565b92915050565b600081519050612eeb8161422b565b92915050565b600060208284031215612f0757612f06613fdf565b5b6000612f1584828501612d2c565b91505092915050565b60008060408385031215612f3557612f34613fdf565b5b6000612f4385828601612d2c565b9250506020612f5485828601612d2c565b9150509250929050565b600080600060608486031215612f7757612f76613fdf565b5b6000612f8586828701612d2c565b9350506020612f9686828701612d2c565b9250506040612fa786828701612ec7565b9150509250925092565b600080600080600060808688031215612fcd57612fcc613fdf565b5b6000612fdb88828901612d2c565b9550506020612fec88828901612d2c565b9450506040612ffd88828901612ec7565b935050606086013567ffffffffffffffff81111561301e5761301d613fda565b5b61302a88828901612daa565b92509250509295509295909350565b600080604083850312156130505761304f613fdf565b5b600061305e85828601612d2c565b925050602061306f85828601612d56565b9150509250929050565b600080604083850312156130905761308f613fdf565b5b600061309e85828601612d2c565b92505060206130af85828601612ec7565b9150509250929050565b6000602082840312156130cf576130ce613fdf565b5b60006130dd84828501612d6b565b91505092915050565b6000602082840312156130fc576130fb613fdf565b5b600061310a84828501612d80565b91505092915050565b60006020828403121561312957613128613fdf565b5b600061313784828501612d95565b91505092915050565b60006020828403121561315657613155613fdf565b5b600061316484828501612e2e565b91505092915050565b60006020828403121561318357613182613fdf565b5b600061319184828501612ec7565b91505092915050565b6000602082840312156131b0576131af613fdf565b5b60006131be84828501612edc565b91505092915050565b60008060008060008060c087890312156131e4576131e3613fdf565b5b60006131f289828a01612ec7565b965050602061320389828a01612d41565b955050604061321489828a01612d56565b945050606087013567ffffffffffffffff81111561323557613234613fda565b5b61324189828a01612e99565b935050608087013567ffffffffffffffff81111561326257613261613fda565b5b61326e89828a01612e00565b92505060a061327f89828a01612d56565b9150509295509295509295565b60008060008060008060008060008060006101208c8e0312156132b2576132b1613fdf565b5b60006132c08e828f01612ec7565b9b505060206132d18e828f01612d2c565b9a505060406132e28e828f01612ec7565b99505060606132f38e828f01612ec7565b98505060806133048e828f01612d2c565b97505060a06133158e828f01612ec7565b96505060c06133268e828f01612d56565b95505060e08c013567ffffffffffffffff81111561334757613346613fda565b5b6133538e828f01612e43565b94509450506101008c013567ffffffffffffffff81111561337757613376613fda565b5b6133838e828f01612daa565b92509250509295989b509295989b9093969950565b60008060008060008060008060c0898b0312156133b8576133b7613fdf565b5b60006133c68b828c01612ec7565b98505060206133d78b828c01612d2c565b97505060406133e88b828c01612ec7565b96505060606133f98b828c01612ec7565b955050608089013567ffffffffffffffff81111561341a57613419613fda565b5b6134268b828c01612e43565b945094505060a089013567ffffffffffffffff81111561344957613448613fda565b5b6134558b828c01612daa565b92509250509295985092959890939650565b61347081613e19565b82525050565b61347f81613e07565b82525050565b61348e81613e2b565b82525050565b60006134a08385613dcf565b93506134ad838584613ec3565b6134b683613fe4565b840190509392505050565b60006134cc82613db9565b6134d68185613dcf565b93506134e6818560208601613ed2565b6134ef81613fe4565b840191505092915050565b600061350582613db9565b61350f8185613de0565b935061351f818560208601613ed2565b80840191505092915050565b6000815461353881613f05565b6135428186613de0565b9450600182166000811461355d576001811461356e576135a1565b60ff198316865281860193506135a1565b61357785613d8f565b60005b838110156135995781548189015260018201915060208101905061357a565b838801955050505b50505092915050565b6135b381613e9f565b82525050565b60006135c482613dc4565b6135ce8185613deb565b93506135de818560208601613ed2565b6135e781613fe4565b840191505092915050565b60006135fd82613dc4565b6136078185613dfc565b9350613617818560208601613ed2565b80840191505092915050565b6000815461363081613f05565b61363a8186613dfc565b94506001821660008114613655576001811461366657613699565b60ff19831686528186019350613699565b61366f85613da4565b60005b8381101561369157815481890152600182019150602081019050613672565b838801955050505b50505092915050565b60006136af602683613deb565b91506136ba82613ff5565b604082019050919050565b60006136d2601183613deb565b91506136dd82614044565b602082019050919050565b60006136f5600c83613deb565b91506137008261406d565b602082019050919050565b6000613718601083613deb565b915061372382614096565b602082019050919050565b600061373b601083613deb565b9150613746826140bf565b602082019050919050565b600061375e602083613deb565b9150613769826140e8565b602082019050919050565b6000613781600083613dcf565b915061378c82614111565b600082019050919050565b60006137a4600e83613deb565b91506137af82614114565b602082019050919050565b60006137c7600e83613deb565b91506137d28261413d565b602082019050919050565b60006137ea600a83613deb565b91506137f582614166565b602082019050919050565b600061380d600a83613deb565b91506138188261418f565b602082019050919050565b61382c81613e95565b82525050565b600061383e82846134fa565b915081905092915050565b6000613855828461352b565b915081905092915050565b600061386c82846135f2565b915081905092915050565b60006138838284613623565b915081905092915050565b60006020820190506138a36000830184613476565b92915050565b60006020820190506138be6000830184613467565b92915050565b60006060820190506138d96000830186613476565b6138e66020830185613476565b6138f36040830184613823565b949350505050565b60006080820190506139106000830188613476565b61391d6020830187613476565b61392a6040830186613823565b818103606083015261393d818486613494565b90509695505050505050565b600060808201905061395e6000830186613476565b61396b6020830185613476565b6139786040830184613823565b818103606083015261398981613774565b9050949350505050565b60006040820190506139a86000830185613476565b6139b56020830184613823565b9392505050565b60006020820190506139d16000830184613485565b92915050565b600060a0820190506139ec6000830188613485565b81810360208301526139fe81876135b9565b90508181036040830152613a1281866134c1565b9050613a216060830185613485565b613a2e6080830184613476565b9695505050505050565b60006020820190508181036000830152613a5281846134c1565b905092915050565b6000602082019050613a6f60008301846135aa565b92915050565b60006020820190508181036000830152613a8f81846135b9565b905092915050565b60006020820190508181036000830152613ab0816136a2565b9050919050565b60006020820190508181036000830152613ad0816136c5565b9050919050565b60006020820190508181036000830152613af0816136e8565b9050919050565b60006020820190508181036000830152613b108161370b565b9050919050565b60006020820190508181036000830152613b308161372e565b9050919050565b60006020820190508181036000830152613b5081613751565b9050919050565b60006020820190508181036000830152613b7081613797565b9050919050565b60006020820190508181036000830152613b90816137ba565b9050919050565b60006020820190508181036000830152613bb0816137dd565b9050919050565b60006020820190508181036000830152613bd081613800565b9050919050565b6000602082019050613bec6000830184613823565b92915050565b6000604082019050613c076000830185613823565b613c146020830184613476565b9392505050565b600061010082019050613c31600083018b613823565b613c3e602083018a613823565b613c4b6040830189613476565b613c586060830188613476565b613c656080830187613823565b613c7260a0830186613485565b81810360c0830152613c8481856135b9565b905081810360e0830152613c9881846134c1565b90509998505050505050505050565b600060a082019050613cbc6000830188613823565b613cc96020830187613823565b613cd66040830186613476565b8181036060830152613ce881856135b9565b90508181036080830152613cfc81846134c1565b90509695505050505050565b6000613d12613d23565b9050613d1e8282613f37565b919050565b6000604051905090565b600067ffffffffffffffff821115613d4857613d47613f97565b5b613d5182613fe4565b9050602081019050919050565b600067ffffffffffffffff821115613d7957613d78613f97565b5b613d8282613fe4565b9050602081019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1282613e75565b9050919050565b6000613e2482613e75565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613e6e82613e07565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613eaa82613eb1565b9050919050565b6000613ebc82613e75565b9050919050565b82818337600083830152505050565b60005b83811015613ef0578082015181840152602081019050613ed5565b83811115613eff576000848401525b50505050565b60006002820490506001821680613f1d57607f821691505b60208210811415613f3157613f30613f68565b5b50919050565b613f4082613fe4565b810181811067ffffffffffffffff82111715613f5f57613f5e613f97565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49445f524543495049454e54000000000000000000000000000000600082015250565b7f5a45524f5f414444524553530000000000000000000000000000000000000000600082015250565b7f6d75737420646f6e617465206d6f617200000000000000000000000000000000600082015250565b7f554e534146455f524543495049454e5400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f414c52454144595f4d494e544544000000000000000000000000000000000000600082015250565b7f4e4f545f415554484f52495a4544000000000000000000000000000000000000600082015250565b7f4e4f545f4d494e54454400000000000000000000000000000000000000000000600082015250565b7f57524f4e475f46524f4d00000000000000000000000000000000000000000000600082015250565b6141c181613e07565b81146141cc57600080fd5b50565b6141d881613e19565b81146141e357600080fd5b50565b6141ef81613e2b565b81146141fa57600080fd5b50565b61420681613e37565b811461421157600080fd5b50565b61421d81613e63565b811461422857600080fd5b50565b61423481613e95565b811461423f57600080fd5b5056fe68617070792062697274686461792042616e6e79212068747470733a2f2f6a62782e6d7970696e6174612e636c6f75642f697066732f516d544c6e68597437764d65385a68756937575a6a6769466a5a77465769636e53324b4c4d4655747a4a4c746757a264697066735822122096809ddaaf8b5848054abe348ead029bc05f32e6a00439ea108cd12c8137232464736f6c6343000806003368617070792062697274686461792042616e6e79212068747470733a2f2f6a62782e6d7970696e6174612e636c6f75642f697066732f516d544c6e68597437764d65385a68756937575a6a6769466a5a77465769636e53324b4c4d4655747a4a4c74675700000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000cc8f7a89d89c2ab3559f484e0c656423e979ac9c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000af28bcb48c40dbc86f52d459a6562f658fc94b1e00000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000062d350ff000000000000000000000000000000000000000000000000000000000000000e42697274686461792042616e6e79000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442444159000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d54644375316a536f374c4333507458785074703859393770646d6e57426834354e5077345074506d4e6843750000000000000000000000
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a4919eb11161008a578063c41c2f2411610064578063c41c2f24146108b3578063c87b56dd146108de578063e985e9c51461091b578063f2fde38b14610958576104bd565b8063a4919eb114610834578063b88d4fde1461085f578063b96053df14610888576104bd565b80638da5cb5b116100c65780638da5cb5b1461078a57806393b7f154146107b557806395d89b41146107e0578063a22cb4651461080b576104bd565b8063715018a61461072c5780637e646549146107435780638293fee61461076e576104bd565b806318160ddd1161015957806342842e0e1161013357806342842e0e1461065e57806354ab58af146106875780636352211e146106b257806370a08231146106ef576104bd565b806318160ddd146105df57806323b872dd1461060a5780633ce9830b14610633576104bd565b8063095ea7b311610195578063095ea7b31461056757806309a6b7e5146105905780630e45f78e146105ac5780631249c58b146105d5576104bd565b806301ffc9a7146104c257806306fdde03146104ff578063081812fc1461052a576104bd565b366104bd57600b60009054906101000a900460ff1615610301576102fc60075461eeee476012600980546101ee90613f05565b80601f016020809104026020016040519081016040528092919081815260200182805461021a90613f05565b80156102675780601f1061023c57610100808354040283529160200191610267565b820191906000526020600020905b81548152906001019060200180831161024a57829003601f168201915b5050505050600a805461027990613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546102a590613f05565b80156102f25780601f106102c7576101008083540402835291602001916102f2565b820191906000526020600020905b8154815290600101906020018083116102d557829003601f168201915b5050505050610981565b6104bb565b6104ba60075461eeee476012600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461038b57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661038d565b335b6000600860149054906101000a900460ff16600980546103ac90613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546103d890613f05565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050600a805461043790613f05565b80601f016020809104026020016040519081016040528092919081815260200182805461046390613f05565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050610cdc565b5b005b600080fd5b3480156104ce57600080fd5b506104e960048036038101906104e491906130e6565b61109d565b6040516104f691906139bc565b60405180910390f35b34801561050b57600080fd5b506105146110bf565b6040516105219190613a75565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061316d565b61114d565b60405161055e919061388e565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190613079565b611180565b005b6105aa60048036038101906105a59190613398565b611369565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906131c7565b611516565b005b6105dd611767565b005b3480156105eb57600080fd5b506105f4611857565b6040516106019190613bd7565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612f5e565b61185d565b005b34801561063f57600080fd5b50610648611c5d565b6040516106559190613bd7565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612f5e565b611c63565b005b34801561069357600080fd5b5061069c611daa565b6040516106a991906138a9565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d4919061316d565b611dd0565b6040516106e6919061388e565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612ef1565b611e7c565b6040516107239190613bd7565b60405180910390f35b34801561073857600080fd5b50610741611f34565b005b34801561074f57600080fd5b50610758611f48565b6040516107659190613a38565b60405180910390f35b6107886004803603810190610783919061328c565b611fd6565b005b34801561079657600080fd5b5061079f612189565b6040516107ac919061388e565b60405180910390f35b3480156107c157600080fd5b506107ca6121b3565b6040516107d791906139bc565b60405180910390f35b3480156107ec57600080fd5b506107f56121c6565b6040516108029190613a75565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613039565b612254565b005b34801561084057600080fd5b50610849612351565b60405161085691906139bc565b60405180910390f35b34801561086b57600080fd5b5061088660048036038101906108819190612fb1565b612364565b005b34801561089457600080fd5b5061089d6124b1565b6040516108aa9190613a75565b60405180910390f35b3480156108bf57600080fd5b506108c861253f565b6040516108d59190613a5a565b60405180910390f35b3480156108ea57600080fd5b506109056004803603810190610900919061316d565b612563565b6040516109129190613a75565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190612f1e565b6125f7565b60405161094f91906139bc565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a9190612ef1565b612626565b005b60007f000000000000000000000000cc8f7a89d89c2ab3559f484e0c656423e979ac9c73ffffffffffffffffffffffffffffffffffffffff16638620265088886040518363ffffffff1660e01b81526004016109de929190613bf2565b60206040518083038186803b1580156109f657600080fd5b505afa158015610a0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2e9190613140565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a97576040517ffba10dd600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b838173ffffffffffffffffffffffffffffffffffffffff1663b7bad1b1886040518263ffffffff1660e01b8152600401610ad1919061388e565b60206040518083038186803b158015610ae957600080fd5b505afa158015610afd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b21919061319a565b14610b58576040517fb972592400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61eeee73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614610c1c578573ffffffffffffffffffffffffffffffffffffffff1663095ea7b382876040518363ffffffff1660e01b8152600401610bc8929190613993565b602060405180830381600087803b158015610be257600080fd5b505af1158015610bf6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1a91906130b9565b505b600061eeee73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614610c5a576000610c5c565b855b90508173ffffffffffffffffffffffffffffffffffffffff16630cf8e858828a898b89896040518763ffffffff1660e01b8152600401610ca0959493929190613ca7565b6000604051808303818588803b158015610cb957600080fd5b505af1158015610ccd573d6000803e3d6000fd5b50505050505050505050505050565b60007f000000000000000000000000cc8f7a89d89c2ab3559f484e0c656423e979ac9c73ffffffffffffffffffffffffffffffffffffffff1663862026508b8b6040518363ffffffff1660e01b8152600401610d39929190613bf2565b60206040518083038186803b158015610d5157600080fd5b505afa158015610d65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d899190613140565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df2576040517ffba10dd600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b868173ffffffffffffffffffffffffffffffffffffffff1663b7bad1b18b6040518263ffffffff1660e01b8152600401610e2c919061388e565b60206040518083038186803b158015610e4457600080fd5b505afa158015610e58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7c919061319a565b14610eb3576040517fb972592400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61eeee73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614610f77578873ffffffffffffffffffffffffffffffffffffffff1663095ea7b3828a6040518363ffffffff1660e01b8152600401610f23929190613993565b602060405180830381600087803b158015610f3d57600080fd5b505af1158015610f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7591906130b9565b505b600061eeee73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614610fb5576000610fb7565b885b90508173ffffffffffffffffffffffffffffffffffffffff16631ebc263f828d8c8e600073ffffffffffffffffffffffffffffffffffffffff168d73ffffffffffffffffffffffffffffffffffffffff1614156110145733611016565b8c5b8c8c8c8c6040518a63ffffffff1660e01b815260040161103d989796959493929190613c1b565b6020604051808303818588803b15801561105657600080fd5b505af115801561106a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061108f919061319a565b505050505050505050505050565b60006110a8826126aa565b806110b857506110b782612724565b5b9050919050565b600080546110cc90613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546110f890613f05565b80156111455780601f1061111a57610100808354040283529160200191611145565b820191906000526020600020905b81548152906001019060200180831161112857829003601f168201915b505050505081565b60046020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112785750600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613b77565b60405180910390fd5b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61eeee73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161461146e5760003411156113d9576040517fbcfd35be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330896040518463ffffffff1660e01b8152600401611416939291906138c4565b602060405180830381600087803b15801561143057600080fd5b505af1158015611444573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146891906130b9565b50611476565b349550601294505b61150c8888888888888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505087878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610981565b5050505050505050565b61151e6127b6565b600754861461152f57856007819055505b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146115c65784600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600860149054906101000a900460ff161515841515146115fb5783600860146101000a81548160ff0219169083151502179055505b600960405160200161160d9190613877565b60405160208183030381529060405280519060200120836040516020016116349190613860565b6040516020818303038152906040528051906020012014611667578260099080519060200190611665929190612b7f565b505b600a6040516020016116799190613849565b60405160208183030381529060405280519060200120826040516020016116a09190613832565b60405160208183030381529060405280519060200120146116d35781600a90805190602001906116d1929190612c05565b505b600b60009054906101000a900460ff161515811515146117085780600b60006101000a81548160ff0219169083151502179055505b8473ffffffffffffffffffffffffffffffffffffffff16867f36b1c5cef608e320317b9ee5155756634c65fe7055b424ce57e2f6c59eec794786868686336040516117579594939291906139d7565b60405180910390a3505050505050565b66038d7ea4c680003410156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890613af7565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000062d350ff42106117dd57600080fd5b6118397f000000000000000000000000000000000000000000000000000000000000000161eeee346012336000806040518060a00160405280606481526020016142436064913960405180602001604052806000815250610cdc565b600c600081546001019190508190555061185533600c54612834565b565b600c5481565b6002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613bb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590613ab7565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611a2e5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611a9757506004600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd90613b77565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60075481565b611c6e83838361185d565b60008273ffffffffffffffffffffffffffffffffffffffff163b1480611d66575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401611cf393929190613949565b602060405180830381600087803b158015611d0d57600080fd5b505af1158015611d21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d459190613113565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90613b17565b60405180910390fd5b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691508173ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90613b97565b60405180910390fd5b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490613ad7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611f3c6127b6565b611f466000612a47565b565b600a8054611f5590613f05565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8190613f05565b8015611fce5780601f10611fa357610100808354040283529160200191611fce565b820191906000526020600020905b815481529060010190602001808311611fb157829003601f168201915b505050505081565b61eeee73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16146120db576000341115612046576040517fbcfd35be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd33308c6040518463ffffffff1660e01b8152600401612083939291906138c4565b602060405180830381600087803b15801561209d57600080fd5b505af11580156120b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d591906130b9565b506120e3565b349850601297505b61217c8b8b8b8b8b8b8b8b8b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610cdc565b5050505050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900460ff1681565b600180546121d390613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546121ff90613f05565b801561224c5780601f106122215761010080835404028352916020019161224c565b820191906000526020600020905b81548152906001019060200180831161222f57829003601f168201915b505050505081565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234591906139bc565b60405180910390a35050565b600860149054906101000a900460ff1681565b61236f85858561185d565b60008473ffffffffffffffffffffffffffffffffffffffff163b148061246b575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016123f89594939291906138fb565b602060405180830381600087803b15801561241257600080fd5b505af1158015612426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061244a9190613113565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b6124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a190613b17565b60405180910390fd5b5050505050565b600980546124be90613f05565b80601f01602080910402602001604051908101604052809291908181526020018280546124ea90613f05565b80156125375780601f1061250c57610100808354040283529160200191612537565b820191906000526020600020905b81548152906001019060200180831161251a57829003601f168201915b505050505081565b7f000000000000000000000000cc8f7a89d89c2ab3559f484e0c656423e979ac9c81565b6060600d805461257290613f05565b80601f016020809104026020016040519081016040528092919081815260200182805461259e90613f05565b80156125eb5780601f106125c0576101008083540402835291602001916125eb565b820191906000526020600020905b8154815290600101906020018083116125ce57829003601f168201915b50505050509050919050565b60056020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61262e6127b6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561269e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269590613a97565b60405180910390fd5b6126a781612a47565b50565b60007fd90c137e000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271d575061271c82612b0d565b5b9050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061277f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6127be612b77565b73ffffffffffffffffffffffffffffffffffffffff166127dc612189565b73ffffffffffffffffffffffffffffffffffffffff1614612832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282990613b37565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289b90613ab7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90613b57565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b828054612b8b90613f05565b90600052602060002090601f016020900481019282612bad5760008555612bf4565b82601f10612bc657805160ff1916838001178555612bf4565b82800160010185558215612bf4579182015b82811115612bf3578251825591602001919060010190612bd8565b5b509050612c019190612c8b565b5090565b828054612c1190613f05565b90600052602060002090601f016020900481019282612c335760008555612c7a565b82601f10612c4c57805160ff1916838001178555612c7a565b82800160010185558215612c7a579182015b82811115612c79578251825591602001919060010190612c5e565b5b509050612c879190612c8b565b5090565b5b80821115612ca4576000816000905550600101612c8c565b5090565b6000612cbb612cb684613d2d565b613d08565b905082815260208101848484011115612cd757612cd6613fd5565b5b612ce2848285613ec3565b509392505050565b6000612cfd612cf884613d5e565b613d08565b905082815260208101848484011115612d1957612d18613fd5565b5b612d24848285613ec3565b509392505050565b600081359050612d3b816141b8565b92915050565b600081359050612d50816141cf565b92915050565b600081359050612d65816141e6565b92915050565b600081519050612d7a816141e6565b92915050565b600081359050612d8f816141fd565b92915050565b600081519050612da4816141fd565b92915050565b60008083601f840112612dc057612dbf613fcb565b5b8235905067ffffffffffffffff811115612ddd57612ddc613fc6565b5b602083019150836001820283011115612df957612df8613fd0565b5b9250929050565b600082601f830112612e1557612e14613fcb565b5b8135612e25848260208601612ca8565b91505092915050565b600081519050612e3d81614214565b92915050565b60008083601f840112612e5957612e58613fcb565b5b8235905067ffffffffffffffff811115612e7657612e75613fc6565b5b602083019150836001820283011115612e9257612e91613fd0565b5b9250929050565b600082601f830112612eae57612ead613fcb565b5b8135612ebe848260208601612cea565b91505092915050565b600081359050612ed68161422b565b92915050565b600081519050612eeb8161422b565b92915050565b600060208284031215612f0757612f06613fdf565b5b6000612f1584828501612d2c565b91505092915050565b60008060408385031215612f3557612f34613fdf565b5b6000612f4385828601612d2c565b9250506020612f5485828601612d2c565b9150509250929050565b600080600060608486031215612f7757612f76613fdf565b5b6000612f8586828701612d2c565b9350506020612f9686828701612d2c565b9250506040612fa786828701612ec7565b9150509250925092565b600080600080600060808688031215612fcd57612fcc613fdf565b5b6000612fdb88828901612d2c565b9550506020612fec88828901612d2c565b9450506040612ffd88828901612ec7565b935050606086013567ffffffffffffffff81111561301e5761301d613fda565b5b61302a88828901612daa565b92509250509295509295909350565b600080604083850312156130505761304f613fdf565b5b600061305e85828601612d2c565b925050602061306f85828601612d56565b9150509250929050565b600080604083850312156130905761308f613fdf565b5b600061309e85828601612d2c565b92505060206130af85828601612ec7565b9150509250929050565b6000602082840312156130cf576130ce613fdf565b5b60006130dd84828501612d6b565b91505092915050565b6000602082840312156130fc576130fb613fdf565b5b600061310a84828501612d80565b91505092915050565b60006020828403121561312957613128613fdf565b5b600061313784828501612d95565b91505092915050565b60006020828403121561315657613155613fdf565b5b600061316484828501612e2e565b91505092915050565b60006020828403121561318357613182613fdf565b5b600061319184828501612ec7565b91505092915050565b6000602082840312156131b0576131af613fdf565b5b60006131be84828501612edc565b91505092915050565b60008060008060008060c087890312156131e4576131e3613fdf565b5b60006131f289828a01612ec7565b965050602061320389828a01612d41565b955050604061321489828a01612d56565b945050606087013567ffffffffffffffff81111561323557613234613fda565b5b61324189828a01612e99565b935050608087013567ffffffffffffffff81111561326257613261613fda565b5b61326e89828a01612e00565b92505060a061327f89828a01612d56565b9150509295509295509295565b60008060008060008060008060008060006101208c8e0312156132b2576132b1613fdf565b5b60006132c08e828f01612ec7565b9b505060206132d18e828f01612d2c565b9a505060406132e28e828f01612ec7565b99505060606132f38e828f01612ec7565b98505060806133048e828f01612d2c565b97505060a06133158e828f01612ec7565b96505060c06133268e828f01612d56565b95505060e08c013567ffffffffffffffff81111561334757613346613fda565b5b6133538e828f01612e43565b94509450506101008c013567ffffffffffffffff81111561337757613376613fda565b5b6133838e828f01612daa565b92509250509295989b509295989b9093969950565b60008060008060008060008060c0898b0312156133b8576133b7613fdf565b5b60006133c68b828c01612ec7565b98505060206133d78b828c01612d2c565b97505060406133e88b828c01612ec7565b96505060606133f98b828c01612ec7565b955050608089013567ffffffffffffffff81111561341a57613419613fda565b5b6134268b828c01612e43565b945094505060a089013567ffffffffffffffff81111561344957613448613fda565b5b6134558b828c01612daa565b92509250509295985092959890939650565b61347081613e19565b82525050565b61347f81613e07565b82525050565b61348e81613e2b565b82525050565b60006134a08385613dcf565b93506134ad838584613ec3565b6134b683613fe4565b840190509392505050565b60006134cc82613db9565b6134d68185613dcf565b93506134e6818560208601613ed2565b6134ef81613fe4565b840191505092915050565b600061350582613db9565b61350f8185613de0565b935061351f818560208601613ed2565b80840191505092915050565b6000815461353881613f05565b6135428186613de0565b9450600182166000811461355d576001811461356e576135a1565b60ff198316865281860193506135a1565b61357785613d8f565b60005b838110156135995781548189015260018201915060208101905061357a565b838801955050505b50505092915050565b6135b381613e9f565b82525050565b60006135c482613dc4565b6135ce8185613deb565b93506135de818560208601613ed2565b6135e781613fe4565b840191505092915050565b60006135fd82613dc4565b6136078185613dfc565b9350613617818560208601613ed2565b80840191505092915050565b6000815461363081613f05565b61363a8186613dfc565b94506001821660008114613655576001811461366657613699565b60ff19831686528186019350613699565b61366f85613da4565b60005b8381101561369157815481890152600182019150602081019050613672565b838801955050505b50505092915050565b60006136af602683613deb565b91506136ba82613ff5565b604082019050919050565b60006136d2601183613deb565b91506136dd82614044565b602082019050919050565b60006136f5600c83613deb565b91506137008261406d565b602082019050919050565b6000613718601083613deb565b915061372382614096565b602082019050919050565b600061373b601083613deb565b9150613746826140bf565b602082019050919050565b600061375e602083613deb565b9150613769826140e8565b602082019050919050565b6000613781600083613dcf565b915061378c82614111565b600082019050919050565b60006137a4600e83613deb565b91506137af82614114565b602082019050919050565b60006137c7600e83613deb565b91506137d28261413d565b602082019050919050565b60006137ea600a83613deb565b91506137f582614166565b602082019050919050565b600061380d600a83613deb565b91506138188261418f565b602082019050919050565b61382c81613e95565b82525050565b600061383e82846134fa565b915081905092915050565b6000613855828461352b565b915081905092915050565b600061386c82846135f2565b915081905092915050565b60006138838284613623565b915081905092915050565b60006020820190506138a36000830184613476565b92915050565b60006020820190506138be6000830184613467565b92915050565b60006060820190506138d96000830186613476565b6138e66020830185613476565b6138f36040830184613823565b949350505050565b60006080820190506139106000830188613476565b61391d6020830187613476565b61392a6040830186613823565b818103606083015261393d818486613494565b90509695505050505050565b600060808201905061395e6000830186613476565b61396b6020830185613476565b6139786040830184613823565b818103606083015261398981613774565b9050949350505050565b60006040820190506139a86000830185613476565b6139b56020830184613823565b9392505050565b60006020820190506139d16000830184613485565b92915050565b600060a0820190506139ec6000830188613485565b81810360208301526139fe81876135b9565b90508181036040830152613a1281866134c1565b9050613a216060830185613485565b613a2e6080830184613476565b9695505050505050565b60006020820190508181036000830152613a5281846134c1565b905092915050565b6000602082019050613a6f60008301846135aa565b92915050565b60006020820190508181036000830152613a8f81846135b9565b905092915050565b60006020820190508181036000830152613ab0816136a2565b9050919050565b60006020820190508181036000830152613ad0816136c5565b9050919050565b60006020820190508181036000830152613af0816136e8565b9050919050565b60006020820190508181036000830152613b108161370b565b9050919050565b60006020820190508181036000830152613b308161372e565b9050919050565b60006020820190508181036000830152613b5081613751565b9050919050565b60006020820190508181036000830152613b7081613797565b9050919050565b60006020820190508181036000830152613b90816137ba565b9050919050565b60006020820190508181036000830152613bb0816137dd565b9050919050565b60006020820190508181036000830152613bd081613800565b9050919050565b6000602082019050613bec6000830184613823565b92915050565b6000604082019050613c076000830185613823565b613c146020830184613476565b9392505050565b600061010082019050613c31600083018b613823565b613c3e602083018a613823565b613c4b6040830189613476565b613c586060830188613476565b613c656080830187613823565b613c7260a0830186613485565b81810360c0830152613c8481856135b9565b905081810360e0830152613c9881846134c1565b90509998505050505050505050565b600060a082019050613cbc6000830188613823565b613cc96020830187613823565b613cd66040830186613476565b8181036060830152613ce881856135b9565b90508181036080830152613cfc81846134c1565b90509695505050505050565b6000613d12613d23565b9050613d1e8282613f37565b919050565b6000604051905090565b600067ffffffffffffffff821115613d4857613d47613f97565b5b613d5182613fe4565b9050602081019050919050565b600067ffffffffffffffff821115613d7957613d78613f97565b5b613d8282613fe4565b9050602081019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1282613e75565b9050919050565b6000613e2482613e75565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613e6e82613e07565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613eaa82613eb1565b9050919050565b6000613ebc82613e75565b9050919050565b82818337600083830152505050565b60005b83811015613ef0578082015181840152602081019050613ed5565b83811115613eff576000848401525b50505050565b60006002820490506001821680613f1d57607f821691505b60208210811415613f3157613f30613f68565b5b50919050565b613f4082613fe4565b810181811067ffffffffffffffff82111715613f5f57613f5e613f97565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49445f524543495049454e54000000000000000000000000000000600082015250565b7f5a45524f5f414444524553530000000000000000000000000000000000000000600082015250565b7f6d75737420646f6e617465206d6f617200000000000000000000000000000000600082015250565b7f554e534146455f524543495049454e5400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f414c52454144595f4d494e544544000000000000000000000000000000000000600082015250565b7f4e4f545f415554484f52495a4544000000000000000000000000000000000000600082015250565b7f4e4f545f4d494e54454400000000000000000000000000000000000000000000600082015250565b7f57524f4e475f46524f4d00000000000000000000000000000000000000000000600082015250565b6141c181613e07565b81146141cc57600080fd5b50565b6141d881613e19565b81146141e357600080fd5b50565b6141ef81613e2b565b81146141fa57600080fd5b50565b61420681613e37565b811461421157600080fd5b50565b61421d81613e63565b811461422857600080fd5b50565b61423481613e95565b811461423f57600080fd5b5056fe68617070792062697274686461792042616e6e79212068747470733a2f2f6a62782e6d7970696e6174612e636c6f75642f697066732f516d544c6e68597437764d65385a68756937575a6a6769466a5a77465769636e53324b4c4d4655747a4a4c746757a264697066735822122096809ddaaf8b5848054abe348ead029bc05f32e6a00439ea108cd12c8137232464736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000cc8f7a89d89c2ab3559f484e0c656423e979ac9c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000af28bcb48c40dbc86f52d459a6562f658fc94b1e00000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000062d350ff000000000000000000000000000000000000000000000000000000000000000e42697274686461792042616e6e79000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442444159000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d54644375316a536f374c4333507458785074703859393770646d6e57426834354e5077345074506d4e6843750000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Birthday Banny
Arg [1] : _symbol (string): BDAY
Arg [2] : _jbdirectory (address): 0xCc8f7a89d89c2AB3559f484E0C656423E979ac9C
Arg [3] : _projectId (uint256): 1
Arg [4] : _beneficiary (address): 0xAF28bcB48C40dBC86f52D459A6562F658fc94B1e
Arg [5] : _metadata (string): ipfs://QmTdCu1jSo7LC3PtXxPtp8Y97pdmnWBh45NPw4PtPmNhCu
Arg [6] : _deadline (uint256): 1658015999
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 000000000000000000000000cc8f7a89d89c2ab3559f484e0c656423e979ac9c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000af28bcb48c40dbc86f52d459a6562f658fc94b1e
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [6] : 0000000000000000000000000000000000000000000000000000000062d350ff
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [8] : 42697274686461792042616e6e79000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 4244415900000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [12] : 697066733a2f2f516d54644375316a536f374c43335074587850747038593937
Arg [13] : 70646d6e57426834354e5077345074506d4e6843750000000000000000000000
Deployed Bytecode Sourcemap
49225:2328:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37564:25;;;;;;;;;;;37560:677;;;37598:220;37624:16;;31493:42;37674:21;37706:2;37772:11;37598:220;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37794:15;37598:220;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:15;:220::i;:::-;37560:677;;;37837:400;37852:16;;31493:42;37902:21;37934:2;38030:1;38000:32;;:18;;;;;;;;;;;:32;;;:66;;38048:18;;;;;;;;;;;38000:66;;;38035:10;38000:66;38077:1;38154:26;;;;;;;;;;;38191:11;37837:400;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38213:15;37837:400;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;:400::i;:::-;37560:677;49225:2328;;;;;51248:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;904:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1877:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2503:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43899:754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39219:1448;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50229:823;;;:::i;:::-;;49289:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3016:768;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33358:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3792:409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33532:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1346:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1505:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11938:103;;;;;;;;;;;;;:::i;:::-;;34100:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42263:950;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11290:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34291:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;931:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2801:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33761:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4209:441;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33935:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32949:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51060:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1932:68;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12196:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48121:1097;48375:28;48406:9;:27;;;48434:10;48446:6;48406:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48375:78;;48540:1;48500:43;;:9;:43;;;48496:76;;;48552:20;;;;;;;;;;;;;;48496:76;48698:9;48660;:26;;;48687:6;48660:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;48656:86;;48716:26;;;;;;;;;;;;;;48656:86;31493:42;48864:22;;:6;:22;;;48860:79;;48895:6;48888:22;;;48919:9;48931:7;48888:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48860:79;48999:21;31493:42;49023:22;;:6;:22;;;:36;;49058:1;49023:36;;;49048:7;49023:36;48999:60;;49119:9;:24;;;49151:13;49166:10;49178:7;49187:6;49195:5;49202:9;49119:93;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48315:903;;48121:1097;;;;;;:::o;46030:1405::-;46365:28;46396:9;:27;;;46424:10;46436:6;46396:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46365:78;;46530:1;46490:43;;:9;:43;;;46486:76;;;46542:20;;;;;;;;;;;;;;46486:76;46688:9;46650;:26;;;46677:6;46650:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;46646:86;;46706:26;;;;;;;;;;;;;;46646:86;31493:42;46854:22;;:6;:22;;;46850:79;;46885:6;46878:22;;;46909:9;46921:7;46878:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46850:79;46989:21;31493:42;47013:22;;:6;:22;;;:36;;47048:1;47013:36;;;47038:7;47013:36;46989:60;;47145:9;:13;;;47166;47189:10;47208:7;47265:6;47304:1;47280:26;;:12;:26;;;;:54;;47324:10;47280:54;;;47309:12;47280:54;47343:18;47370:20;47399:5;47413:9;47145:284;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46305:1130;;46030:1405;;;;;;;;;:::o;51248:302::-;51393:4;51435:53;51476:11;51435:40;:53::i;:::-;:107;;;;51505:37;51530:11;51505:24;:37::i;:::-;51435:107;51415:127;;51248:302;;;:::o;904:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1877:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;2503:290::-;2575:13;2591:8;:12;2600:2;2591:12;;;;;;;;;;;;;;;;;;;;;2575:28;;2638:5;2624:19;;:10;:19;;;:58;;;;2647:16;:23;2664:5;2647:23;;;;;;;;;;;;;;;:35;2671:10;2647:35;;;;;;;;;;;;;;;;;;;;;;;;;2624:58;2616:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;2732:7;2714:11;:15;2726:2;2714:15;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;2782:2;2773:7;2757:28;;2766:5;2757:28;;;;;;;;;;;;2564:229;2503:290;;:::o;43899:754::-;31493:42;44176:31;;44184:6;44176:31;;;44172:394;;44234:1;44222:9;:13;44218:48;;;44244:22;;;;;;;;;;;;;;44218:48;44348:6;44341:27;;;44369:10;44389:4;44396:7;44341:63;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44172:394;;;44526:9;44516:19;;44556:2;44544:14;;44172:394;44574:73;44590:10;44602:6;44610:7;44619:9;44630:5;;44574:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44637:9;;44574:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:15;:73::i;:::-;43899:754;;;;;;;;:::o;39219:1448::-;11176:13;:11;:13::i;:::-;39550:16:::1;;39536:10;:30;39532:65;;39587:10;39568:16;:29;;;;39532:65;39681:18;;;;;;;;;;;39665:34;;:12;:34;;;39661:73;;39722:12;39701:18;;:33;;;;;;;;;;;;;;;;;;39661:73;39839:26;;;;;;;;;;;39815:50;;:20;:50;;;39811:112;;39903:20;39874:26;;:49;;;;;;;;;;;;;;;;;;39811:112;40049:11;40032:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;40022:40;;;;;;40011:5;39994:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;39984:34;;;;;;:78;39980:110;;40085:5;40071:11;:19;;;;;;;;;;;;:::i;:::-;;39980:110;40224:15;40207:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;40197:44;;;;;;40182:9;40165:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;40155:38;;;;;;:86;40151:126;;40268:9;40250:15;:27;;;;;;;;;;;;:::i;:::-;;40151:126;40381:25;;;;;;;;;;;40351:55;;:26;:55;;;40347:122;;40443:26;40415:25;;:54;;;;;;;;;;;;;;;;;;40347:122;40527:12;40483:178;;40508:10;40483:178;40548:20;40577:5;40591:9;40609:26;40644:10;40483:178;;;;;;;;;;:::i;:::-;;;;;;;;39219:1448:::0;;;;;;:::o;50229:823::-;50294:11;50281:9;:24;;50273:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;50363:8;50345:15;:26;50337:35;;;;;;50383:560;50402:9;31493:42;50494:9;50537:2;50575:10;50624:1;50670:5;50383:560;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;:560::i;:::-;50981:11;;50979:13;;;;;;;;;;;51014:30;51020:10;51032:11;;51014:5;:30::i;:::-;50229:823::o;49289:26::-;;;;:::o;3016:768::-;3152:8;:12;3161:2;3152:12;;;;;;;;;;;;;;;;;;;;;3144:20;;:4;:20;;;3136:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;3214:1;3200:16;;:2;:16;;;;3192:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3287:4;3273:18;;:10;:18;;;:56;;;;3295:16;:22;3312:4;3295:22;;;;;;;;;;;;;;;:34;3318:10;3295:34;;;;;;;;;;;;;;;;;;;;;;;;;3273:56;:89;;;;3347:11;:15;3359:2;3347:15;;;;;;;;;;;;;;;;;;;;;3333:29;;:10;:29;;;3273:89;3251:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;3609:10;:16;3620:4;3609:16;;;;;;;;;;;;;;;;:18;;;;;;;;;;;;;;3644:10;:14;3655:2;3644:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;3699:2;3684:8;:12;3693:2;3684:12;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;3721:11;:15;3733:2;3721:15;;;;;;;;;;;;3714:22;;;;;;;;;;;3773:2;3769;3754:22;;3763:4;3754:22;;;;;;;;;;;;3016:768;;;:::o;33358:40::-;;;;:::o;3792:409::-;3916:26;3929:4;3935:2;3939;3916:12;:26::i;:::-;3995:1;3977:2;:14;;;:19;:172;;;;4104:45;;;4017:132;;;4037:2;4017:40;;;4058:10;4070:4;4076:2;4017:66;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:132;;;;3977:172;3955:238;;;;;;;;;;;;:::i;:::-;;;;;;;;;3792:409;;;:::o;33532:50::-;;;;;;;;;;;;;:::o;1346:151::-;1404:13;1472:1;1438:36;;1447:8;:12;1456:2;1447:12;;;;;;;;;;;;;;;;;;;;;1439:20;;;1438:36;;;;1430:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;1346:151;;;:::o;1505:172::-;1568:7;1613:1;1596:19;;:5;:19;;;;1588:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;1652:10;:17;1663:5;1652:17;;;;;;;;;;;;;;;;1645:24;;1505:172;;;:::o;11938:103::-;11176:13;:11;:13::i;:::-;12003:30:::1;12030:1;12003:18;:30::i;:::-;11938:103::o:0;34100:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42263:950::-;31493:42;42621:31;;42629:6;42621:31;;;42617:394;;42679:1;42667:9;:13;42663:48;;;42689:22;;;;;;;;;;;;;;42663:48;42793:6;42786:27;;;42814:10;42834:4;42841:7;42786:63;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42617:394;;;42971:9;42961:19;;43001:2;42989:14;;42617:394;43019:188;43032:10;43051:6;43066:7;43082:9;43100:12;43121:18;43148:20;43177:5;;43019:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43191:9;;43019:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;:188::i;:::-;42263:950;;;;;;;;;;;:::o;11290:87::-;11336:7;11363:6;;;;;;;;;;;11356:13;;11290:87;:::o;34291:46::-;;;;;;;;;;;;;:::o;931:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2801:207::-;2928:8;2887:16;:28;2904:10;2887:28;;;;;;;;;;;;;;;:38;2916:8;2887:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;2981:8;2954:46;;2969:10;2954:46;;;2991:8;2954:46;;;;;;:::i;:::-;;;;;;;;2801:207;;:::o;33761:47::-;;;;;;;;;;;;;:::o;4209:441::-;4363:26;4376:4;4382:2;4386;4363:12;:26::i;:::-;4442:1;4424:2;:14;;;:19;:174;;;;4553:45;;;4464:134;;;4484:2;4464:40;;;4505:10;4517:4;4523:2;4527:4;;4464:68;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:134;;;;4424:174;4402:240;;;;;;;;;;;;:::i;:::-;;;;;;;;;4209:441;;;;;:::o;33935:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32949:48::-;;;:::o;51060:180::-;51186:13;51224:8;51217:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51060:180;;;:::o;1932:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12196:201::-;11176:13;:11;:13::i;:::-;12305:1:::1;12285:22;;:8;:22;;;;12277:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12361:28;12380:8;12361:18;:28::i;:::-;12196:201:::0;:::o;34798:254::-;34926:4;34972:33;34956:49;;;:12;:49;;;;:90;;;;35009:37;35033:12;35009:23;:37::i;:::-;34956:90;34942:104;;34798:254;;;:::o;4844:340::-;4920:4;4972:10;4957:25;;:11;:25;;;;:101;;;;5048:10;5033:25;;:11;:25;;;;4957:101;:177;;;;5124:10;5109:25;;:11;:25;;;;4957:177;4937:197;;4844:340;;;:::o;11455:132::-;11530:12;:10;:12::i;:::-;11519:23;;:7;:5;:7::i;:::-;:23;;;11511:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11455:132::o;5384:384::-;5473:1;5459:16;;:2;:16;;;;5451:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;5542:1;5518:26;;:8;:12;5527:2;5518:12;;;;;;;;;;;;;;;;;;;;;:26;;;5510:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;5657:10;:14;5668:2;5657:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;5712:2;5697:8;:12;5706:2;5697:12;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;5757:2;5753;5732:28;;5749:1;5732:28;;;;;;;;;;;;5384:384;;:::o;12557:191::-;12631:16;12650:6;;;;;;;;;;;12631:25;;12676:8;12667:6;;:17;;;;;;;;;;;;;;;;;;12731:8;12700:40;;12721:8;12700:40;;;;;;;;;;;;12620:128;12557:191;:::o;9167:157::-;9252:4;9291:25;9276:40;;;:11;:40;;;;9269:47;;9167:157;;;:::o;9999:98::-;10052:7;10079:10;10072:17;;9999:98;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;1046:95;;;;:::o;1147:133::-;1190:5;1228:6;1215:20;1206:29;;1244:30;1268:5;1244:30;:::i;:::-;1196:84;;;;:::o;1286:137::-;1340:5;1371:6;1365:13;1356:22;;1387:30;1411:5;1387:30;:::i;:::-;1346:77;;;;:::o;1429:137::-;1474:5;1512:6;1499:20;1490:29;;1528:32;1554:5;1528:32;:::i;:::-;1480:86;;;;:::o;1572:141::-;1628:5;1659:6;1653:13;1644:22;;1675:32;1701:5;1675:32;:::i;:::-;1634:79;;;;:::o;1732:552::-;1789:8;1799:6;1849:3;1842:4;1834:6;1830:17;1826:27;1816:2;;1857:79;;:::i;:::-;1816:2;1970:6;1957:20;1947:30;;2000:18;1992:6;1989:30;1986:2;;;2022:79;;:::i;:::-;1986:2;2136:4;2128:6;2124:17;2112:29;;2190:3;2182:4;2174:6;2170:17;2160:8;2156:32;2153:41;2150:2;;;2197:79;;:::i;:::-;2150:2;1806:478;;;;;:::o;2303:338::-;2358:5;2407:3;2400:4;2392:6;2388:17;2384:27;2374:2;;2415:79;;:::i;:::-;2374:2;2532:6;2519:20;2557:78;2631:3;2623:6;2616:4;2608:6;2604:17;2557:78;:::i;:::-;2548:87;;2364:277;;;;;:::o;2647:197::-;2731:5;2762:6;2756:13;2747:22;;2778:60;2832:5;2778:60;:::i;:::-;2737:107;;;;:::o;2864:553::-;2922:8;2932:6;2982:3;2975:4;2967:6;2963:17;2959:27;2949:2;;2990:79;;:::i;:::-;2949:2;3103:6;3090:20;3080:30;;3133:18;3125:6;3122:30;3119:2;;;3155:79;;:::i;:::-;3119:2;3269:4;3261:6;3257:17;3245:29;;3323:3;3315:4;3307:6;3303:17;3293:8;3289:32;3286:41;3283:2;;;3330:79;;:::i;:::-;3283:2;2939:478;;;;;:::o;3437:340::-;3493:5;3542:3;3535:4;3527:6;3523:17;3519:27;3509:2;;3550:79;;:::i;:::-;3509:2;3667:6;3654:20;3692:79;3767:3;3759:6;3752:4;3744:6;3740:17;3692:79;:::i;:::-;3683:88;;3499:278;;;;;:::o;3783:139::-;3829:5;3867:6;3854:20;3845:29;;3883:33;3910:5;3883:33;:::i;:::-;3835:87;;;;:::o;3928:143::-;3985:5;4016:6;4010:13;4001:22;;4032:33;4059:5;4032:33;:::i;:::-;3991:80;;;;:::o;4077:329::-;4136:6;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4191:79;;:::i;:::-;4153:2;4311:1;4336:53;4381:7;4372:6;4361:9;4357:22;4336:53;:::i;:::-;4326:63;;4282:117;4143:263;;;;:::o;4412:474::-;4480:6;4488;4537:2;4525:9;4516:7;4512:23;4508:32;4505:2;;;4543:79;;:::i;:::-;4505:2;4663:1;4688:53;4733:7;4724:6;4713:9;4709:22;4688:53;:::i;:::-;4678:63;;4634:117;4790:2;4816:53;4861:7;4852:6;4841:9;4837:22;4816:53;:::i;:::-;4806:63;;4761:118;4495:391;;;;;:::o;4892:619::-;4969:6;4977;4985;5034:2;5022:9;5013:7;5009:23;5005:32;5002:2;;;5040:79;;:::i;:::-;5002:2;5160:1;5185:53;5230:7;5221:6;5210:9;5206:22;5185:53;:::i;:::-;5175:63;;5131:117;5287:2;5313:53;5358:7;5349:6;5338:9;5334:22;5313:53;:::i;:::-;5303:63;;5258:118;5415:2;5441:53;5486:7;5477:6;5466:9;5462:22;5441:53;:::i;:::-;5431:63;;5386:118;4992:519;;;;;:::o;5517:963::-;5614:6;5622;5630;5638;5646;5695:3;5683:9;5674:7;5670:23;5666:33;5663:2;;;5702:79;;:::i;:::-;5663:2;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5949:2;5975:53;6020:7;6011:6;6000:9;5996:22;5975:53;:::i;:::-;5965:63;;5920:118;6077:2;6103:53;6148:7;6139:6;6128:9;6124:22;6103:53;:::i;:::-;6093:63;;6048:118;6233:2;6222:9;6218:18;6205:32;6264:18;6256:6;6253:30;6250:2;;;6286:79;;:::i;:::-;6250:2;6399:64;6455:7;6446:6;6435:9;6431:22;6399:64;:::i;:::-;6381:82;;;;6176:297;5653:827;;;;;;;;:::o;6486:468::-;6551:6;6559;6608:2;6596:9;6587:7;6583:23;6579:32;6576:2;;;6614:79;;:::i;:::-;6576:2;6734:1;6759:53;6804:7;6795:6;6784:9;6780:22;6759:53;:::i;:::-;6749:63;;6705:117;6861:2;6887:50;6929:7;6920:6;6909:9;6905:22;6887:50;:::i;:::-;6877:60;;6832:115;6566:388;;;;;:::o;6960:474::-;7028:6;7036;7085:2;7073:9;7064:7;7060:23;7056:32;7053:2;;;7091:79;;:::i;:::-;7053:2;7211:1;7236:53;7281:7;7272:6;7261:9;7257:22;7236:53;:::i;:::-;7226:63;;7182:117;7338:2;7364:53;7409:7;7400:6;7389:9;7385:22;7364:53;:::i;:::-;7354:63;;7309:118;7043:391;;;;;:::o;7440:345::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:2;;;7562:79;;:::i;:::-;7524:2;7682:1;7707:61;7760:7;7751:6;7740:9;7736:22;7707:61;:::i;:::-;7697:71;;7653:125;7514:271;;;;:::o;7791:327::-;7849:6;7898:2;7886:9;7877:7;7873:23;7869:32;7866:2;;;7904:79;;:::i;:::-;7866:2;8024:1;8049:52;8093:7;8084:6;8073:9;8069:22;8049:52;:::i;:::-;8039:62;;7995:116;7856:262;;;;:::o;8124:349::-;8193:6;8242:2;8230:9;8221:7;8217:23;8213:32;8210:2;;;8248:79;;:::i;:::-;8210:2;8368:1;8393:63;8448:7;8439:6;8428:9;8424:22;8393:63;:::i;:::-;8383:73;;8339:127;8200:273;;;;:::o;8479:405::-;8576:6;8625:2;8613:9;8604:7;8600:23;8596:32;8593:2;;;8631:79;;:::i;:::-;8593:2;8751:1;8776:91;8859:7;8850:6;8839:9;8835:22;8776:91;:::i;:::-;8766:101;;8722:155;8583:301;;;;:::o;8890:329::-;8949:6;8998:2;8986:9;8977:7;8973:23;8969:32;8966:2;;;9004:79;;:::i;:::-;8966:2;9124:1;9149:53;9194:7;9185:6;9174:9;9170:22;9149:53;:::i;:::-;9139:63;;9095:117;8956:263;;;;:::o;9225:351::-;9295:6;9344:2;9332:9;9323:7;9319:23;9315:32;9312:2;;;9350:79;;:::i;:::-;9312:2;9470:1;9495:64;9551:7;9542:6;9531:9;9527:22;9495:64;:::i;:::-;9485:74;;9441:128;9302:274;;;;:::o;9582:1419::-;9707:6;9715;9723;9731;9739;9747;9796:3;9784:9;9775:7;9771:23;9767:33;9764:2;;;9803:79;;:::i;:::-;9764:2;9923:1;9948:53;9993:7;9984:6;9973:9;9969:22;9948:53;:::i;:::-;9938:63;;9894:117;10050:2;10076:61;10129:7;10120:6;10109:9;10105:22;10076:61;:::i;:::-;10066:71;;10021:126;10186:2;10212:50;10254:7;10245:6;10234:9;10230:22;10212:50;:::i;:::-;10202:60;;10157:115;10339:2;10328:9;10324:18;10311:32;10370:18;10362:6;10359:30;10356:2;;;10392:79;;:::i;:::-;10356:2;10497:63;10552:7;10543:6;10532:9;10528:22;10497:63;:::i;:::-;10487:73;;10282:288;10637:3;10626:9;10622:19;10609:33;10669:18;10661:6;10658:30;10655:2;;;10691:79;;:::i;:::-;10655:2;10796:62;10850:7;10841:6;10830:9;10826:22;10796:62;:::i;:::-;10786:72;;10580:288;10907:3;10934:50;10976:7;10967:6;10956:9;10952:22;10934:50;:::i;:::-;10924:60;;10878:116;9754:1247;;;;;;;;:::o;11007:1889::-;11158:6;11166;11174;11182;11190;11198;11206;11214;11222;11230;11238:7;11288:3;11276:9;11267:7;11263:23;11259:33;11256:2;;;11295:79;;:::i;:::-;11256:2;11415:1;11440:53;11485:7;11476:6;11465:9;11461:22;11440:53;:::i;:::-;11430:63;;11386:117;11542:2;11568:53;11613:7;11604:6;11593:9;11589:22;11568:53;:::i;:::-;11558:63;;11513:118;11670:2;11696:53;11741:7;11732:6;11721:9;11717:22;11696:53;:::i;:::-;11686:63;;11641:118;11798:2;11824:53;11869:7;11860:6;11849:9;11845:22;11824:53;:::i;:::-;11814:63;;11769:118;11926:3;11953:53;11998:7;11989:6;11978:9;11974:22;11953:53;:::i;:::-;11943:63;;11897:119;12055:3;12082:53;12127:7;12118:6;12107:9;12103:22;12082:53;:::i;:::-;12072:63;;12026:119;12184:3;12211:50;12253:7;12244:6;12233:9;12229:22;12211:50;:::i;:::-;12201:60;;12155:116;12338:3;12327:9;12323:19;12310:33;12370:18;12362:6;12359:30;12356:2;;;12392:79;;:::i;:::-;12356:2;12505:65;12562:7;12553:6;12542:9;12538:22;12505:65;:::i;:::-;12487:83;;;;12281:299;12647:3;12636:9;12632:19;12619:33;12679:18;12671:6;12668:30;12665:2;;;12701:79;;:::i;:::-;12665:2;12815:64;12871:7;12862:6;12851:9;12847:22;12815:64;:::i;:::-;12796:83;;;;12590:299;11246:1650;;;;;;;;;;;;;;:::o;12902:1455::-;13029:6;13037;13045;13053;13061;13069;13077;13085;13134:3;13122:9;13113:7;13109:23;13105:33;13102:2;;;13141:79;;:::i;:::-;13102:2;13261:1;13286:53;13331:7;13322:6;13311:9;13307:22;13286:53;:::i;:::-;13276:63;;13232:117;13388:2;13414:53;13459:7;13450:6;13439:9;13435:22;13414:53;:::i;:::-;13404:63;;13359:118;13516:2;13542:53;13587:7;13578:6;13567:9;13563:22;13542:53;:::i;:::-;13532:63;;13487:118;13644:2;13670:53;13715:7;13706:6;13695:9;13691:22;13670:53;:::i;:::-;13660:63;;13615:118;13800:3;13789:9;13785:19;13772:33;13832:18;13824:6;13821:30;13818:2;;;13854:79;;:::i;:::-;13818:2;13967:65;14024:7;14015:6;14004:9;14000:22;13967:65;:::i;:::-;13949:83;;;;13743:299;14109:3;14098:9;14094:19;14081:33;14141:18;14133:6;14130:30;14127:2;;;14163:79;;:::i;:::-;14127:2;14276:64;14332:7;14323:6;14312:9;14308:22;14276:64;:::i;:::-;14258:82;;;;14052:298;13092:1265;;;;;;;;;;;:::o;14363:142::-;14466:32;14492:5;14466:32;:::i;:::-;14461:3;14454:45;14444:61;;:::o;14511:118::-;14598:24;14616:5;14598:24;:::i;:::-;14593:3;14586:37;14576:53;;:::o;14635:109::-;14716:21;14731:5;14716:21;:::i;:::-;14711:3;14704:34;14694:50;;:::o;14772:301::-;14868:3;14889:70;14952:6;14947:3;14889:70;:::i;:::-;14882:77;;14969:43;15005:6;15000:3;14993:5;14969:43;:::i;:::-;15037:29;15059:6;15037:29;:::i;:::-;15032:3;15028:39;15021:46;;14872:201;;;;;:::o;15079:360::-;15165:3;15193:38;15225:5;15193:38;:::i;:::-;15247:70;15310:6;15305:3;15247:70;:::i;:::-;15240:77;;15326:52;15371:6;15366:3;15359:4;15352:5;15348:16;15326:52;:::i;:::-;15403:29;15425:6;15403:29;:::i;:::-;15398:3;15394:39;15387:46;;15169:270;;;;;:::o;15445:373::-;15549:3;15577:38;15609:5;15577:38;:::i;:::-;15631:88;15712:6;15707:3;15631:88;:::i;:::-;15624:95;;15728:52;15773:6;15768:3;15761:4;15754:5;15750:16;15728:52;:::i;:::-;15805:6;15800:3;15796:16;15789:23;;15553:265;;;;;:::o;15846:841::-;15947:3;15984:5;15978:12;16013:36;16039:9;16013:36;:::i;:::-;16065:88;16146:6;16141:3;16065:88;:::i;:::-;16058:95;;16184:1;16173:9;16169:17;16200:1;16195:137;;;;16346:1;16341:340;;;;16162:519;;16195:137;16279:4;16275:9;16264;16260:25;16255:3;16248:38;16315:6;16310:3;16306:16;16299:23;;16195:137;;16341:340;16408:37;16439:5;16408:37;:::i;:::-;16467:1;16481:154;16495:6;16492:1;16489:13;16481:154;;;16569:7;16563:14;16559:1;16554:3;16550:11;16543:35;16619:1;16610:7;16606:15;16595:26;;16517:4;16514:1;16510:12;16505:17;;16481:154;;;16664:6;16659:3;16655:16;16648:23;;16348:333;;16162:519;;15951:736;;;;;;:::o;16693:173::-;16801:58;16853:5;16801:58;:::i;:::-;16796:3;16789:71;16779:87;;:::o;16872:364::-;16960:3;16988:39;17021:5;16988:39;:::i;:::-;17043:71;17107:6;17102:3;17043:71;:::i;:::-;17036:78;;17123:52;17168:6;17163:3;17156:4;17149:5;17145:16;17123:52;:::i;:::-;17200:29;17222:6;17200:29;:::i;:::-;17195:3;17191:39;17184:46;;16964:272;;;;;:::o;17242:377::-;17348:3;17376:39;17409:5;17376:39;:::i;:::-;17431:89;17513:6;17508:3;17431:89;:::i;:::-;17424:96;;17529:52;17574:6;17569:3;17562:4;17555:5;17551:16;17529:52;:::i;:::-;17606:6;17601:3;17597:16;17590:23;;17352:267;;;;;:::o;17649:845::-;17752:3;17789:5;17783:12;17818:36;17844:9;17818:36;:::i;:::-;17870:89;17952:6;17947:3;17870:89;:::i;:::-;17863:96;;17990:1;17979:9;17975:17;18006:1;18001:137;;;;18152:1;18147:341;;;;17968:520;;18001:137;18085:4;18081:9;18070;18066:25;18061:3;18054:38;18121:6;18116:3;18112:16;18105:23;;18001:137;;18147:341;18214:38;18246:5;18214:38;:::i;:::-;18274:1;18288:154;18302:6;18299:1;18296:13;18288:154;;;18376:7;18370:14;18366:1;18361:3;18357:11;18350:35;18426:1;18417:7;18413:15;18402:26;;18324:4;18321:1;18317:12;18312:17;;18288:154;;;18471:6;18466:3;18462:16;18455:23;;18154:334;;17968:520;;17756:738;;;;;;:::o;18500:366::-;18642:3;18663:67;18727:2;18722:3;18663:67;:::i;:::-;18656:74;;18739:93;18828:3;18739:93;:::i;:::-;18857:2;18852:3;18848:12;18841:19;;18646:220;;;:::o;18872:366::-;19014:3;19035:67;19099:2;19094:3;19035:67;:::i;:::-;19028:74;;19111:93;19200:3;19111:93;:::i;:::-;19229:2;19224:3;19220:12;19213:19;;19018:220;;;:::o;19244:366::-;19386:3;19407:67;19471:2;19466:3;19407:67;:::i;:::-;19400:74;;19483:93;19572:3;19483:93;:::i;:::-;19601:2;19596:3;19592:12;19585:19;;19390:220;;;:::o;19616:366::-;19758:3;19779:67;19843:2;19838:3;19779:67;:::i;:::-;19772:74;;19855:93;19944:3;19855:93;:::i;:::-;19973:2;19968:3;19964:12;19957:19;;19762:220;;;:::o;19988:366::-;20130:3;20151:67;20215:2;20210:3;20151:67;:::i;:::-;20144:74;;20227:93;20316:3;20227:93;:::i;:::-;20345:2;20340:3;20336:12;20329:19;;20134:220;;;:::o;20360:366::-;20502:3;20523:67;20587:2;20582:3;20523:67;:::i;:::-;20516:74;;20599:93;20688:3;20599:93;:::i;:::-;20717:2;20712:3;20708:12;20701:19;;20506:220;;;:::o;20732:362::-;20873:3;20894:65;20957:1;20952:3;20894:65;:::i;:::-;20887:72;;20968:93;21057:3;20968:93;:::i;:::-;21086:1;21081:3;21077:11;21070:18;;20877:217;;;:::o;21100:366::-;21242:3;21263:67;21327:2;21322:3;21263:67;:::i;:::-;21256:74;;21339:93;21428:3;21339:93;:::i;:::-;21457:2;21452:3;21448:12;21441:19;;21246:220;;;:::o;21472:366::-;21614:3;21635:67;21699:2;21694:3;21635:67;:::i;:::-;21628:74;;21711:93;21800:3;21711:93;:::i;:::-;21829:2;21824:3;21820:12;21813:19;;21618:220;;;:::o;21844:366::-;21986:3;22007:67;22071:2;22066:3;22007:67;:::i;:::-;22000:74;;22083:93;22172:3;22083:93;:::i;:::-;22201:2;22196:3;22192:12;22185:19;;21990:220;;;:::o;22216:366::-;22358:3;22379:67;22443:2;22438:3;22379:67;:::i;:::-;22372:74;;22455:93;22544:3;22455:93;:::i;:::-;22573:2;22568:3;22564:12;22557:19;;22362:220;;;:::o;22588:118::-;22675:24;22693:5;22675:24;:::i;:::-;22670:3;22663:37;22653:53;;:::o;22712:271::-;22842:3;22864:93;22953:3;22944:6;22864:93;:::i;:::-;22857:100;;22974:3;22967:10;;22846:137;;;;:::o;22989:265::-;23116:3;23138:90;23224:3;23215:6;23138:90;:::i;:::-;23131:97;;23245:3;23238:10;;23120:134;;;;:::o;23260:275::-;23392:3;23414:95;23505:3;23496:6;23414:95;:::i;:::-;23407:102;;23526:3;23519:10;;23396:139;;;;:::o;23541:269::-;23670:3;23692:92;23780:3;23771:6;23692:92;:::i;:::-;23685:99;;23801:3;23794:10;;23674:136;;;;:::o;23816:222::-;23909:4;23947:2;23936:9;23932:18;23924:26;;23960:71;24028:1;24017:9;24013:17;24004:6;23960:71;:::i;:::-;23914:124;;;;:::o;24044:254::-;24153:4;24191:2;24180:9;24176:18;24168:26;;24204:87;24288:1;24277:9;24273:17;24264:6;24204:87;:::i;:::-;24158:140;;;;:::o;24304:442::-;24453:4;24491:2;24480:9;24476:18;24468:26;;24504:71;24572:1;24561:9;24557:17;24548:6;24504:71;:::i;:::-;24585:72;24653:2;24642:9;24638:18;24629:6;24585:72;:::i;:::-;24667;24735:2;24724:9;24720:18;24711:6;24667:72;:::i;:::-;24458:288;;;;;;:::o;24752:660::-;24957:4;24995:3;24984:9;24980:19;24972:27;;25009:71;25077:1;25066:9;25062:17;25053:6;25009:71;:::i;:::-;25090:72;25158:2;25147:9;25143:18;25134:6;25090:72;:::i;:::-;25172;25240:2;25229:9;25225:18;25216:6;25172:72;:::i;:::-;25291:9;25285:4;25281:20;25276:2;25265:9;25261:18;25254:48;25319:86;25400:4;25391:6;25383;25319:86;:::i;:::-;25311:94;;24962:450;;;;;;;;:::o;25418:748::-;25667:4;25705:3;25694:9;25690:19;25682:27;;25719:71;25787:1;25776:9;25772:17;25763:6;25719:71;:::i;:::-;25800:72;25868:2;25857:9;25853:18;25844:6;25800:72;:::i;:::-;25882;25950:2;25939:9;25935:18;25926:6;25882:72;:::i;:::-;26001:9;25995:4;25991:20;25986:2;25975:9;25971:18;25964:48;26029:130;26154:4;26029:130;:::i;:::-;26021:138;;25672:494;;;;;;:::o;26172:332::-;26293:4;26331:2;26320:9;26316:18;26308:26;;26344:71;26412:1;26401:9;26397:17;26388:6;26344:71;:::i;:::-;26425:72;26493:2;26482:9;26478:18;26469:6;26425:72;:::i;:::-;26298:206;;;;;:::o;26510:210::-;26597:4;26635:2;26624:9;26620:18;26612:26;;26648:65;26710:1;26699:9;26695:17;26686:6;26648:65;:::i;:::-;26602:118;;;;:::o;26726:818::-;26957:4;26995:3;26984:9;26980:19;26972:27;;27009:65;27071:1;27060:9;27056:17;27047:6;27009:65;:::i;:::-;27121:9;27115:4;27111:20;27106:2;27095:9;27091:18;27084:48;27149:78;27222:4;27213:6;27149:78;:::i;:::-;27141:86;;27274:9;27268:4;27264:20;27259:2;27248:9;27244:18;27237:48;27302:76;27373:4;27364:6;27302:76;:::i;:::-;27294:84;;27388:66;27450:2;27439:9;27435:18;27426:6;27388:66;:::i;:::-;27464:73;27532:3;27521:9;27517:19;27508:6;27464:73;:::i;:::-;26962:582;;;;;;;;:::o;27550:309::-;27661:4;27699:2;27688:9;27684:18;27676:26;;27748:9;27742:4;27738:20;27734:1;27723:9;27719:17;27712:47;27776:76;27847:4;27838:6;27776:76;:::i;:::-;27768:84;;27666:193;;;;:::o;27865:264::-;27979:4;28017:2;28006:9;28002:18;27994:26;;28030:92;28119:1;28108:9;28104:17;28095:6;28030:92;:::i;:::-;27984:145;;;;:::o;28135:313::-;28248:4;28286:2;28275:9;28271:18;28263:26;;28335:9;28329:4;28325:20;28321:1;28310:9;28306:17;28299:47;28363:78;28436:4;28427:6;28363:78;:::i;:::-;28355:86;;28253:195;;;;:::o;28454:419::-;28620:4;28658:2;28647:9;28643:18;28635:26;;28707:9;28701:4;28697:20;28693:1;28682:9;28678:17;28671:47;28735:131;28861:4;28735:131;:::i;:::-;28727:139;;28625:248;;;:::o;28879:419::-;29045:4;29083:2;29072:9;29068:18;29060:26;;29132:9;29126:4;29122:20;29118:1;29107:9;29103:17;29096:47;29160:131;29286:4;29160:131;:::i;:::-;29152:139;;29050:248;;;:::o;29304:419::-;29470:4;29508:2;29497:9;29493:18;29485:26;;29557:9;29551:4;29547:20;29543:1;29532:9;29528:17;29521:47;29585:131;29711:4;29585:131;:::i;:::-;29577:139;;29475:248;;;:::o;29729:419::-;29895:4;29933:2;29922:9;29918:18;29910:26;;29982:9;29976:4;29972:20;29968:1;29957:9;29953:17;29946:47;30010:131;30136:4;30010:131;:::i;:::-;30002:139;;29900:248;;;:::o;30154:419::-;30320:4;30358:2;30347:9;30343:18;30335:26;;30407:9;30401:4;30397:20;30393:1;30382:9;30378:17;30371:47;30435:131;30561:4;30435:131;:::i;:::-;30427:139;;30325:248;;;:::o;30579:419::-;30745:4;30783:2;30772:9;30768:18;30760:26;;30832:9;30826:4;30822:20;30818:1;30807:9;30803:17;30796:47;30860:131;30986:4;30860:131;:::i;:::-;30852:139;;30750:248;;;:::o;31004:419::-;31170:4;31208:2;31197:9;31193:18;31185:26;;31257:9;31251:4;31247:20;31243:1;31232:9;31228:17;31221:47;31285:131;31411:4;31285:131;:::i;:::-;31277:139;;31175:248;;;:::o;31429:419::-;31595:4;31633:2;31622:9;31618:18;31610:26;;31682:9;31676:4;31672:20;31668:1;31657:9;31653:17;31646:47;31710:131;31836:4;31710:131;:::i;:::-;31702:139;;31600:248;;;:::o;31854:419::-;32020:4;32058:2;32047:9;32043:18;32035:26;;32107:9;32101:4;32097:20;32093:1;32082:9;32078:17;32071:47;32135:131;32261:4;32135:131;:::i;:::-;32127:139;;32025:248;;;:::o;32279:419::-;32445:4;32483:2;32472:9;32468:18;32460:26;;32532:9;32526:4;32522:20;32518:1;32507:9;32503:17;32496:47;32560:131;32686:4;32560:131;:::i;:::-;32552:139;;32450:248;;;:::o;32704:222::-;32797:4;32835:2;32824:9;32820:18;32812:26;;32848:71;32916:1;32905:9;32901:17;32892:6;32848:71;:::i;:::-;32802:124;;;;:::o;32932:332::-;33053:4;33091:2;33080:9;33076:18;33068:26;;33104:71;33172:1;33161:9;33157:17;33148:6;33104:71;:::i;:::-;33185:72;33253:2;33242:9;33238:18;33229:6;33185:72;:::i;:::-;33058:206;;;;;:::o;33270:1163::-;33591:4;33629:3;33618:9;33614:19;33606:27;;33643:71;33711:1;33700:9;33696:17;33687:6;33643:71;:::i;:::-;33724:72;33792:2;33781:9;33777:18;33768:6;33724:72;:::i;:::-;33806;33874:2;33863:9;33859:18;33850:6;33806:72;:::i;:::-;33888;33956:2;33945:9;33941:18;33932:6;33888:72;:::i;:::-;33970:73;34038:3;34027:9;34023:19;34014:6;33970:73;:::i;:::-;34053:67;34115:3;34104:9;34100:19;34091:6;34053:67;:::i;:::-;34168:9;34162:4;34158:20;34152:3;34141:9;34137:19;34130:49;34196:78;34269:4;34260:6;34196:78;:::i;:::-;34188:86;;34322:9;34316:4;34312:20;34306:3;34295:9;34291:19;34284:49;34350:76;34421:4;34412:6;34350:76;:::i;:::-;34342:84;;33596:837;;;;;;;;;;;:::o;34439:842::-;34682:4;34720:3;34709:9;34705:19;34697:27;;34734:71;34802:1;34791:9;34787:17;34778:6;34734:71;:::i;:::-;34815:72;34883:2;34872:9;34868:18;34859:6;34815:72;:::i;:::-;34897;34965:2;34954:9;34950:18;34941:6;34897:72;:::i;:::-;35016:9;35010:4;35006:20;35001:2;34990:9;34986:18;34979:48;35044:78;35117:4;35108:6;35044:78;:::i;:::-;35036:86;;35170:9;35164:4;35160:20;35154:3;35143:9;35139:19;35132:49;35198:76;35269:4;35260:6;35198:76;:::i;:::-;35190:84;;34687:594;;;;;;;;:::o;35287:129::-;35321:6;35348:20;;:::i;:::-;35338:30;;35377:33;35405:4;35397:6;35377:33;:::i;:::-;35328:88;;;:::o;35422:75::-;35455:6;35488:2;35482:9;35472:19;;35462:35;:::o;35503:307::-;35564:4;35654:18;35646:6;35643:30;35640:2;;;35676:18;;:::i;:::-;35640:2;35714:29;35736:6;35714:29;:::i;:::-;35706:37;;35798:4;35792;35788:15;35780:23;;35569:241;;;:::o;35816:308::-;35878:4;35968:18;35960:6;35957:30;35954:2;;;35990:18;;:::i;:::-;35954:2;36028:29;36050:6;36028:29;:::i;:::-;36020:37;;36112:4;36106;36102:15;36094:23;;35883:241;;;:::o;36130:140::-;36178:4;36201:3;36193:11;;36224:3;36221:1;36214:14;36258:4;36255:1;36245:18;36237:26;;36183:87;;;:::o;36276:141::-;36325:4;36348:3;36340:11;;36371:3;36368:1;36361:14;36405:4;36402:1;36392:18;36384:26;;36330:87;;;:::o;36423:98::-;36474:6;36508:5;36502:12;36492:22;;36481:40;;;:::o;36527:99::-;36579:6;36613:5;36607:12;36597:22;;36586:40;;;:::o;36632:168::-;36715:11;36749:6;36744:3;36737:19;36789:4;36784:3;36780:14;36765:29;;36727:73;;;;:::o;36806:147::-;36907:11;36944:3;36929:18;;36919:34;;;;:::o;36959:169::-;37043:11;37077:6;37072:3;37065:19;37117:4;37112:3;37108:14;37093:29;;37055:73;;;;:::o;37134:148::-;37236:11;37273:3;37258:18;;37248:34;;;;:::o;37288:96::-;37325:7;37354:24;37372:5;37354:24;:::i;:::-;37343:35;;37333:51;;;:::o;37390:104::-;37435:7;37464:24;37482:5;37464:24;:::i;:::-;37453:35;;37443:51;;;:::o;37500:90::-;37534:7;37577:5;37570:13;37563:21;37552:32;;37542:48;;;:::o;37596:149::-;37632:7;37672:66;37665:5;37661:78;37650:89;;37640:105;;;:::o;37751:123::-;37815:7;37844:24;37862:5;37844:24;:::i;:::-;37833:35;;37823:51;;;:::o;37880:126::-;37917:7;37957:42;37950:5;37946:54;37935:65;;37925:81;;;:::o;38012:77::-;38049:7;38078:5;38067:16;;38057:32;;;:::o;38095:168::-;38166:9;38199:58;38251:5;38199:58;:::i;:::-;38186:71;;38176:87;;;:::o;38269:134::-;38340:9;38373:24;38391:5;38373:24;:::i;:::-;38360:37;;38350:53;;;:::o;38409:154::-;38493:6;38488:3;38483;38470:30;38555:1;38546:6;38541:3;38537:16;38530:27;38460:103;;;:::o;38569:307::-;38637:1;38647:113;38661:6;38658:1;38655:13;38647:113;;;38746:1;38741:3;38737:11;38731:18;38727:1;38722:3;38718:11;38711:39;38683:2;38680:1;38676:10;38671:15;;38647:113;;;38778:6;38775:1;38772:13;38769:2;;;38858:1;38849:6;38844:3;38840:16;38833:27;38769:2;38618:258;;;;:::o;38882:320::-;38926:6;38963:1;38957:4;38953:12;38943:22;;39010:1;39004:4;39000:12;39031:18;39021:2;;39087:4;39079:6;39075:17;39065:27;;39021:2;39149;39141:6;39138:14;39118:18;39115:38;39112:2;;;39168:18;;:::i;:::-;39112:2;38933:269;;;;:::o;39208:281::-;39291:27;39313:4;39291:27;:::i;:::-;39283:6;39279:40;39421:6;39409:10;39406:22;39385:18;39373:10;39370:34;39367:62;39364:2;;;39432:18;;:::i;:::-;39364:2;39472:10;39468:2;39461:22;39251:238;;;:::o;39495:180::-;39543:77;39540:1;39533:88;39640:4;39637:1;39630:15;39664:4;39661:1;39654:15;39681:180;39729:77;39726:1;39719:88;39826:4;39823:1;39816:15;39850:4;39847:1;39840:15;39867:117;39976:1;39973;39966:12;39990:117;40099:1;40096;40089:12;40113:117;40222:1;40219;40212:12;40236:117;40345:1;40342;40335:12;40359:117;40468:1;40465;40458:12;40482:117;40591:1;40588;40581:12;40605:102;40646:6;40697:2;40693:7;40688:2;40681:5;40677:14;40673:28;40663:38;;40653:54;;;:::o;40713:225::-;40853:34;40849:1;40841:6;40837:14;40830:58;40922:8;40917:2;40909:6;40905:15;40898:33;40819:119;:::o;40944:167::-;41084:19;41080:1;41072:6;41068:14;41061:43;41050:61;:::o;41117:162::-;41257:14;41253:1;41245:6;41241:14;41234:38;41223:56;:::o;41285:166::-;41425:18;41421:1;41413:6;41409:14;41402:42;41391:60;:::o;41457:166::-;41597:18;41593:1;41585:6;41581:14;41574:42;41563:60;:::o;41629:182::-;41769:34;41765:1;41757:6;41753:14;41746:58;41735:76;:::o;41817:114::-;41923:8;:::o;41937:164::-;42077:16;42073:1;42065:6;42061:14;42054:40;42043:58;:::o;42107:164::-;42247:16;42243:1;42235:6;42231:14;42224:40;42213:58;:::o;42277:160::-;42417:12;42413:1;42405:6;42401:14;42394:36;42383:54;:::o;42443:160::-;42583:12;42579:1;42571:6;42567:14;42560:36;42549:54;:::o;42609:122::-;42682:24;42700:5;42682:24;:::i;:::-;42675:5;42672:35;42662:2;;42721:1;42718;42711:12;42662:2;42652:79;:::o;42737:138::-;42818:32;42844:5;42818:32;:::i;:::-;42811:5;42808:43;42798:2;;42865:1;42862;42855:12;42798:2;42788:87;:::o;42881:116::-;42951:21;42966:5;42951:21;:::i;:::-;42944:5;42941:32;42931:2;;42987:1;42984;42977:12;42931:2;42921:76;:::o;43003:120::-;43075:23;43092:5;43075:23;:::i;:::-;43068:5;43065:34;43055:2;;43113:1;43110;43103:12;43055:2;43045:78;:::o;43129:176::-;43229:51;43274:5;43229:51;:::i;:::-;43222:5;43219:62;43209:2;;43295:1;43292;43285:12;43209:2;43199:106;:::o;43311:122::-;43384:24;43402:5;43384:24;:::i;:::-;43377:5;43374:35;43364:2;;43423:1;43420;43413:12;43364:2;43354:79;:::o
Swarm Source
ipfs://96809ddaaf8b5848054abe348ead029bc05f32e6a00439ea108cd12c81372324
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.