Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
FractionsImpl
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-12 */ // SPDX-License-Identifier: GPL-3.0-only // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/ERC721Holder.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}. */ contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received(address, address, uint256, bytes memory) public virtual override returns (bytes4) { return this.onERC721Received.selector; } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity >=0.6.2 <0.8.0; /** * @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`, 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 be 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/ReentrancyGuard.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File: contracts/Fractions.sol pragma solidity ^0.6.0; library SafeERC721 { function safeName(IERC721Metadata _metadata) internal view returns (string memory _name) { try _metadata.name() returns (string memory _n) { return _n; } catch {} } function safeSymbol(IERC721Metadata _metadata) internal view returns (string memory _symbol) { try _metadata.symbol() returns (string memory _s) { return _s; } catch {} } function safeTokenURI(IERC721Metadata _metadata, uint256 _tokenId) internal view returns (string memory _tokenURI) { try _metadata.tokenURI(_tokenId) returns (string memory _t) { return _t; } catch {} } function safeTransfer(IERC721 _token, address _to, uint256 _tokenId) internal { address _from = address(this); try _token.transferFrom(_from, _to, _tokenId) { return; } catch {} // attempts to handle non-conforming ERC721 contracts _token.approve(_from, _tokenId); _token.transferFrom(_from, _to, _tokenId); } } contract Fractionalizer is ReentrancyGuard { function fractionalize(address _target, uint256 _tokenId, string memory _name, string memory _symbol, uint8 _decimals, uint256 _fractionsCount, uint256 _fractionPrice, address _paymentToken) external nonReentrant { address _from = msg.sender; address _fractions = address(new Fractions()); IERC721(_target).transferFrom(_from, _fractions, _tokenId); FractionsImpl(_fractions).initialize(_from, _target, _tokenId, _name, _symbol, _decimals, _fractionsCount, _fractionPrice, _paymentToken); emit Fractionalize(_from, _target, _tokenId, _fractions); } event Fractionalize(address indexed _from, address indexed _target, uint256 indexed _tokenId, address _fractions); } contract Fractions { fallback () external payable { assembly { calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), 0x04859E76a961E8B2530afc4829605013bEBD01A4, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } } contract FractionsImpl is ERC721Holder, ERC20, ReentrancyGuard { using SafeERC20 for IERC20; using SafeERC721 for IERC721; using SafeERC721 for IERC721Metadata; using Strings for uint256; address public target; uint256 public tokenId; uint256 public fractionsCount; uint256 public fractionPrice; address public paymentToken; bool public released; string private name_; string private symbol_; constructor () ERC20("Fractions", "FRAC") public { target = address(-1); // prevents proxy code from misuse } function name() public view override returns (string memory _name) { if (bytes(name_).length != 0) return name_; return string(abi.encodePacked(IERC721Metadata(target).safeName(), " #", tokenId.toString(), " Fractions")); } function symbol() public view override returns (string memory _symbol) { if (bytes(symbol_).length != 0) return symbol_; return string(abi.encodePacked(IERC721Metadata(target).safeSymbol(), tokenId.toString())); } function initialize(address _from, address _target, uint256 _tokenId, string memory _name, string memory _symbol, uint8 _decimals, uint256 _fractionsCount, uint256 _fractionPrice, address _paymentToken) external { require(target == address(0), "already initialized"); require(IERC721(_target).ownerOf(_tokenId) == address(this), "token not staked"); require(_fractionsCount > 0, "invalid fraction count"); require(_fractionsCount * _fractionPrice / _fractionsCount == _fractionPrice, "invalid fraction price"); target = _target; tokenId = _tokenId; fractionsCount = _fractionsCount; fractionPrice = _fractionPrice; paymentToken = _paymentToken; released = false; name_ = _name; symbol_ = _symbol; _setupDecimals(_decimals); _mint(_from, _fractionsCount); } function reservePrice() public view returns (uint256 _reservePrice) { return fractionsCount * fractionPrice; } function redeemAmountOf(address _from) public view returns (uint256 _redeemAmount) { require(!released, "token already redeemed"); uint256 _fractionsCount = balanceOf(_from); uint256 _reservePrice = reservePrice(); return _reservePrice - _fractionsCount * fractionPrice; } function vaultBalance() external view returns (uint256 _vaultBalance) { if (!released) return 0; uint256 _fractionsCount = totalSupply(); return _fractionsCount * fractionPrice; } function vaultBalanceOf(address _from) public view returns (uint256 _vaultBalanceOf) { if (!released) return 0; uint256 _fractionsCount = balanceOf(_from); return _fractionsCount * fractionPrice; } function redeem() external payable nonReentrant { address payable _from = msg.sender; uint256 _value = msg.value; require(!released, "token already redeemed"); uint256 _fractionsCount = balanceOf(_from); uint256 _redeemAmount = redeemAmountOf(_from); released = true; if (_fractionsCount > 0) _burn(_from, _fractionsCount); _safeTransferFrom(paymentToken, _from, _value, payable(address(this)), _redeemAmount); IERC721(target).safeTransfer(_from, tokenId); emit Redeem(_from, _fractionsCount, _redeemAmount); _cleanup(); } function claim() external nonReentrant { address payable _from = msg.sender; require(released, "token not redeemed"); uint256 _fractionsCount = balanceOf(_from); require(_fractionsCount > 0, "nothing to claim"); uint256 _claimAmount = vaultBalanceOf(_from); _burn(_from, _fractionsCount); _safeTransfer(paymentToken, _from, _claimAmount); emit Claim(_from, _fractionsCount, _claimAmount); _cleanup(); } function _cleanup() internal { uint256 _fractionsCount = totalSupply(); if (_fractionsCount == 0) { selfdestruct(address(0)); } } function _safeTransfer(address _token, address payable _to, uint256 _amount) internal { if (_token == address(0)) { _to.transfer(_amount); } else { IERC20(_token).safeTransfer(_to, _amount); } } function _safeTransferFrom(address _token, address payable _from, uint256 _value, address payable _to, uint256 _amount) internal { if (_token == address(0)) { require(_value == _amount, "invalid value"); if (_to != address(this)) _to.transfer(_amount); } else { require(_value == 0, "invalid value"); IERC20(_token).safeTransferFrom(_from, _to, _amount); } } event Redeem(address indexed _from, uint256 _fractionsCount, uint256 _redeemAmount); event Claim(address indexed _from, uint256 _fractionsCount, uint256 _claimAmount); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_fractionsCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_claimAmount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_fractionsCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_redeemAmount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fractionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fractionsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_target","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_fractionsCount","type":"uint256"},{"internalType":"uint256","name":"_fractionPrice","type":"uint256"},{"internalType":"address","name":"_paymentToken","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"_name","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paymentToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"}],"name":"redeemAmountOf","outputs":[{"internalType":"uint256","name":"_redeemAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"released","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservePrice","outputs":[{"internalType":"uint256","name":"_reservePrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"target","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vaultBalance","outputs":[{"internalType":"uint256","name":"_vaultBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"}],"name":"vaultBalanceOf","outputs":[{"internalType":"uint256","name":"_vaultBalanceOf","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4672616374696f6e7300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46524143000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200013d565b508060049080519060200190620000af9291906200013d565b506012600560006101000a81548160ff021916908360ff160217905550505060016006819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e3565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018057805160ff1916838001178555620001b1565b82800160010185558215620001b1579182015b82811115620001b057825182559160200191906001019062000193565b5b509050620001c09190620001c4565b5090565b5b80821115620001df576000816000905550600101620001c5565b5090565b61373280620001f36000396000f3fe6080604052600436106101665760003560e01c80634e71d92d116100d1578063a9059cbb1161008a578063be040fb011610064578063be040fb014610ac9578063d4b8399214610ad3578063db2e1eed14610b14578063dd62ed3e14610b3f57610166565b8063a9059cbb14610808578063b73b8c3914610879578063bc393492146108de57610166565b80634e71d92d1461063357806356953bda1461064a57806370a082311461067557806395d89b41146106da578063961325211461076a578063a457c2d71461079757610166565b806323b872dd1161012357806323b872dd146104325780633013ce29146104c3578063313ce56714610504578063313f85e814610532578063383d42011461059757806339509351146105c257610166565b806306fdde031461016b578063095ea7b3146101fb5780630bf6cc081461026c578063150b7a021461029757806317d70f7c146103dc57806318160ddd14610407575b600080fd5b34801561017757600080fd5b50610180610bc4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020757600080fd5b506102546004803603604081101561021e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610de4565b60405180821515815260200191505060405180910390f35b34801561027857600080fd5b50610281610e02565b6040518082815260200191505060405180910390f35b3480156102a357600080fd5b506103a7600480360360808110156102ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561032157600080fd5b82018360208201111561033357600080fd5b8035906020019184600183028401116401000000008311171561035557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610e39565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b3480156103e857600080fd5b506103f1610e4d565b6040518082815260200191505060405180910390f35b34801561041357600080fd5b5061041c610e53565b6040518082815260200191505060405180910390f35b34801561043e57600080fd5b506104ab6004803603606081101561045557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e5d565b60405180821515815260200191505060405180910390f35b3480156104cf57600080fd5b506104d8610f36565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561051057600080fd5b50610519610f5c565b604051808260ff16815260200191505060405180910390f35b34801561053e57600080fd5b506105816004803603602081101561055557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f73565b6040518082815260200191505060405180910390f35b3480156105a357600080fd5b506105ac610fad565b6040518082815260200191505060405180910390f35b3480156105ce57600080fd5b5061061b600480360360408110156105e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fb3565b60405180821515815260200191505060405180910390f35b34801561063f57600080fd5b50610648611066565b005b34801561065657600080fd5b5061065f6112a0565b6040518082815260200191505060405180910390f35b34801561068157600080fd5b506106c46004803603602081101561069857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112a6565b6040518082815260200191505060405180910390f35b3480156106e657600080fd5b506106ef6112ee565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561072f578082015181840152602081019050610714565b50505050905090810190601f16801561075c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561077657600080fd5b5061077f6114be565b60405180821515815260200191505060405180910390f35b3480156107a357600080fd5b506107f0600480360360408110156107ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d1565b60405180821515815260200191505060405180910390f35b34801561081457600080fd5b506108616004803603604081101561082b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061159e565b60405180821515815260200191505060405180910390f35b34801561088557600080fd5b506108c86004803603602081101561089c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115bc565b6040518082815260200191505060405180910390f35b3480156108ea57600080fd5b50610ac7600480360361012081101561090257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561096957600080fd5b82018360208201111561097b57600080fd5b8035906020019184600183028401116401000000008311171561099d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610a0057600080fd5b820183602082011115610a1257600080fd5b80359060200191846001830284011164010000000083111715610a3457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff1690602001909291908035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061166a565b005b610ad1611a4e565b005b348015610adf57600080fd5b50610ae8611c8f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b2057600080fd5b50610b29611cb5565b6040518082815260200191505060405180910390f35b348015610b4b57600080fd5b50610bae60048036036040811015610b6257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc3565b6040518082815260200191505060405180910390f35b60606000600c80546001816001161561010002031660029004905014610c8657600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c7a5780601f10610c4f57610100808354040283529160200191610c7a565b820191906000526020600020905b815481529060010190602001808311610c5d57829003601f168201915b50505050509050610de1565b610cc7600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d4a565b610cd2600854611e9c565b6040516020018083805190602001908083835b60208310610d085780518252602082019150602081019050602083039250610ce5565b6001836020036101000a038019825116818451168082178552505050505050905001807f202300000000000000000000000000000000000000000000000000000000000081525060020182805190602001908083835b60208310610d815780518252602082019150602081019050602083039250610d5e565b6001836020036101000a038019825116818451168082178552505050505050905001807f204672616374696f6e7300000000000000000000000000000000000000000000815250600a019250505060405160208183030381529060405290505b90565b6000610df8610df1611fe3565b8484611feb565b6001905092915050565b6000600b60149054906101000a900460ff16610e215760009050610e36565b6000610e2b610e53565b9050600a5481029150505b90565b600063150b7a0260e01b9050949350505050565b60085481565b6000600254905090565b6000610e6a8484846121e2565b610f2b84610e76611fe3565b610f268560405180606001604052806028815260200161361c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610edc611fe3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124a39092919063ffffffff16565b611feb565b600190509392505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900460ff16905090565b6000600b60149054906101000a900460ff16610f925760009050610fa8565b6000610f9d836112a6565b9050600a5481029150505b919050565b60095481565b600061105c610fc0611fe3565b846110578560016000610fd1611fe3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b611feb565b6001905092915050565b600260065414156110df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026006819055506000339050600b60149054906101000a900460ff1661116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f746f6b656e206e6f742072656465656d6564000000000000000000000000000081525060200191505060405180910390fd5b6000611179826112a6565b9050600081116111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6e6f7468696e6720746f20636c61696d0000000000000000000000000000000081525060200191505060405180910390fd5b60006111fc83610f73565b905061120883836125eb565b611235600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684836127af565b8273ffffffffffffffffffffffffffffffffffffffff167f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf78383604051808381526020018281526020019250505060405180910390a2611293612861565b5050506001600681905550565b600a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000600d805460018160011615610100020316600290049050146113b057600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113a45780601f10611379576101008083540402835291602001916113a4565b820191906000526020600020905b81548152906001019060200180831161138757829003601f168201915b505050505090506114bb565b6113f1600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612893565b6113fc600854611e9c565b6040516020018083805190602001908083835b60208310611432578051825260208201915060208101905060208303925061140f565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106114835780518252602082019150602081019050602083039250611460565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b90565b600b60149054906101000a900460ff1681565b60006115946114de611fe3565b8461158f856040518060600160405280602581526020016136d86025913960016000611508611fe3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124a39092919063ffffffff16565b611feb565b6001905092915050565b60006115b26115ab611fe3565b84846121e2565b6001905092915050565b6000600b60149054906101000a900460ff1615611641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e20616c72656164792072656465656d65640000000000000000000081525060200191505060405180910390fd5b600061164c836112a6565b90506000611658611cb5565b9050600a548202810392505050919050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f616c726561647920696e697469616c697a65640000000000000000000000000081525060200191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16636352211e896040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561179657600080fd5b505afa1580156117aa573d6000803e3d6000fd5b505050506040513d60208110156117c057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f746f6b656e206e6f74207374616b65640000000000000000000000000000000081525060200191505060405180910390fd5b600083116118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f696e76616c6964206672616374696f6e20636f756e740000000000000000000081525060200191505060405180910390fd5b8183838502816118dc57fe5b0414611950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f696e76616c6964206672616374696f6e2070726963650000000000000000000081525060200191505060405180910390fd5b87600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550866008819055508260098190555081600a8190555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600b60146101000a81548160ff02191690831515021790555085600c9080519060200190611a189291906134cb565b5084600d9080519060200190611a2f9291906134cb565b50611a39846129e5565b611a438984612a03565b505050505050505050565b60026006541415611ac7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260068190555060003390506000349050600b60149054906101000a900460ff1615611b5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e20616c72656164792072656465656d65640000000000000000000081525060200191505060405180910390fd5b6000611b67836112a6565b90506000611b74846115bc565b90506001600b60146101000a81548160ff0219169083151502179055506000821115611ba557611ba484836125eb565b5b611bd4600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685853085612bca565b611c2384600854600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d9f9092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff167fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9298383604051808381526020018281526020019250505060405180910390a2611c81612861565b505050506001600681905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a5460095402905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60608173ffffffffffffffffffffffffffffffffffffffff166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b158015611d9257600080fd5b505afa925050508015611e8457506040513d6000823e3d601f19601f820116820180604052506020811015611dc657600080fd5b8101908080516040519392919084640100000000821115611de657600080fd5b83820191506020820185811115611dfc57600080fd5b8251866001820283011164010000000082111715611e1957600080fd5b8083526020830192505050908051906020019080838360005b83811015611e4d578082015181840152602081019050611e32565b50505050905090810190601f168015611e7a5780820380516001836020036101000a031916815260200191505b5060405250505060015b611e8d57611e96565b80915050611e97565b5b919050565b60606000821415611ee4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fde565b600082905060005b60008214611f0e578080600101915050600a8281611f0657fe5b049150611eec565b60608167ffffffffffffffff81118015611f2757600080fd5b506040519080825280601f01601f191660200182016040528015611f5a5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414611fd657600a8481611f7b57fe5b0660300160f81b82828060019003935081518110611f9557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481611fce57fe5b049350611f69565b819450505050505b919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061368a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135ae6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806136656025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135696023913960400191505060405180910390fd5b6122f9838383612f8a565b612364816040518060600160405280602681526020016135d0602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124a39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123f7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612550576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125155780820151818401526020810190506124fa565b50505050905090810190601f1680156125425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808284019050838110156125e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806136446021913960400191505060405180910390fd5b61267d82600083612f8a565b6126e88160405180606001604052806022815260200161358c602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124a39092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061273f81600254612f8f90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612830578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561282a573d6000803e3d6000fd5b5061285c565b61285b82828573ffffffffffffffffffffffffffffffffffffffff16612fd99092919063ffffffff16565b5b505050565b600061286b610e53565b9050600081141561289057600073ffffffffffffffffffffffffffffffffffffffff16ff5b50565b60608173ffffffffffffffffffffffffffffffffffffffff166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156128db57600080fd5b505afa9250505080156129cd57506040513d6000823e3d601f19601f82011682018060405250602081101561290f57600080fd5b810190808051604051939291908464010000000082111561292f57600080fd5b8382019150602082018581111561294557600080fd5b825186600182028301116401000000008211171561296257600080fd5b8083526020830192505050908051906020019080838360005b8381101561299657808201518184015260208101905061297b565b50505050905090810190601f1680156129c35780820380516001836020036101000a031916815260200191505b5060405250505060015b6129d6576129df565b809150506129e0565b5b919050565b80600560006101000a81548160ff021916908360ff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612ab260008383612f8a565b612ac78160025461256390919063ffffffff16565b600281905550612b1e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cf457808314612c74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c69642076616c75650000000000000000000000000000000000000081525060200191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612cef578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612ced573d6000803e3d6000fd5b505b612d98565b60008314612d6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c69642076616c75650000000000000000000000000000000000000081525060200191505060405180910390fd5b612d978483838873ffffffffffffffffffffffffffffffffffffffff1661307b909392919063ffffffff16565b5b5050505050565b60003090508373ffffffffffffffffffffffffffffffffffffffff166323b872dd8285856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015612e3357600080fd5b505af1925050508015612e44575060015b612e4d57612e53565b50612f85565b8373ffffffffffffffffffffffffffffffffffffffff1663095ea7b382846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015612ec457600080fd5b505af1158015612ed8573d6000803e3d6000fd5b505050508373ffffffffffffffffffffffffffffffffffffffff166323b872dd8285856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015612f6b57600080fd5b505af1158015612f7f573d6000803e3d6000fd5b50505050505b505050565b505050565b6000612fd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506124a3565b905092915050565b6130768363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061313c565b505050565b613136846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061313c565b50505050565b606061319e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661322b9092919063ffffffff16565b9050600081511115613226578080602001905160208110156131bf57600080fd5b8101908080519060200190929190505050613225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806136ae602a913960400191505060405180910390fd5b5b505050565b606061323a8484600085613243565b90509392505050565b60608247101561329e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806135f66026913960400191505060405180910390fd5b6132a7856133ec565b613319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106133695780518252602082019150602081019050602083039250613346565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146133cb576040519150601f19603f3d011682016040523d82523d6000602084013e6133d0565b606091505b50915091506133e08282866133ff565b92505050949350505050565b600080823b905060008111915050919050565b6060831561340f578290506134c4565b6000835111156134225782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561348957808201518184015260208101905061346e565b50505050905090810190601f1680156134b65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061350c57805160ff191683800117855561353a565b8280016001018555821561353a579182015b8281111561353957825182559160200191906001019061351e565b5b509050613547919061354b565b5090565b5b8082111561356457600081600090555060010161354c565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202f66172ea5ae541dc3dcc8a1ff6c327c5bb56d0796ebc38e051ceaa6777c981064736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106101665760003560e01c80634e71d92d116100d1578063a9059cbb1161008a578063be040fb011610064578063be040fb014610ac9578063d4b8399214610ad3578063db2e1eed14610b14578063dd62ed3e14610b3f57610166565b8063a9059cbb14610808578063b73b8c3914610879578063bc393492146108de57610166565b80634e71d92d1461063357806356953bda1461064a57806370a082311461067557806395d89b41146106da578063961325211461076a578063a457c2d71461079757610166565b806323b872dd1161012357806323b872dd146104325780633013ce29146104c3578063313ce56714610504578063313f85e814610532578063383d42011461059757806339509351146105c257610166565b806306fdde031461016b578063095ea7b3146101fb5780630bf6cc081461026c578063150b7a021461029757806317d70f7c146103dc57806318160ddd14610407575b600080fd5b34801561017757600080fd5b50610180610bc4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020757600080fd5b506102546004803603604081101561021e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610de4565b60405180821515815260200191505060405180910390f35b34801561027857600080fd5b50610281610e02565b6040518082815260200191505060405180910390f35b3480156102a357600080fd5b506103a7600480360360808110156102ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561032157600080fd5b82018360208201111561033357600080fd5b8035906020019184600183028401116401000000008311171561035557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610e39565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b3480156103e857600080fd5b506103f1610e4d565b6040518082815260200191505060405180910390f35b34801561041357600080fd5b5061041c610e53565b6040518082815260200191505060405180910390f35b34801561043e57600080fd5b506104ab6004803603606081101561045557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e5d565b60405180821515815260200191505060405180910390f35b3480156104cf57600080fd5b506104d8610f36565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561051057600080fd5b50610519610f5c565b604051808260ff16815260200191505060405180910390f35b34801561053e57600080fd5b506105816004803603602081101561055557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f73565b6040518082815260200191505060405180910390f35b3480156105a357600080fd5b506105ac610fad565b6040518082815260200191505060405180910390f35b3480156105ce57600080fd5b5061061b600480360360408110156105e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fb3565b60405180821515815260200191505060405180910390f35b34801561063f57600080fd5b50610648611066565b005b34801561065657600080fd5b5061065f6112a0565b6040518082815260200191505060405180910390f35b34801561068157600080fd5b506106c46004803603602081101561069857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112a6565b6040518082815260200191505060405180910390f35b3480156106e657600080fd5b506106ef6112ee565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561072f578082015181840152602081019050610714565b50505050905090810190601f16801561075c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561077657600080fd5b5061077f6114be565b60405180821515815260200191505060405180910390f35b3480156107a357600080fd5b506107f0600480360360408110156107ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d1565b60405180821515815260200191505060405180910390f35b34801561081457600080fd5b506108616004803603604081101561082b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061159e565b60405180821515815260200191505060405180910390f35b34801561088557600080fd5b506108c86004803603602081101561089c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115bc565b6040518082815260200191505060405180910390f35b3480156108ea57600080fd5b50610ac7600480360361012081101561090257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561096957600080fd5b82018360208201111561097b57600080fd5b8035906020019184600183028401116401000000008311171561099d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610a0057600080fd5b820183602082011115610a1257600080fd5b80359060200191846001830284011164010000000083111715610a3457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff1690602001909291908035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061166a565b005b610ad1611a4e565b005b348015610adf57600080fd5b50610ae8611c8f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b2057600080fd5b50610b29611cb5565b6040518082815260200191505060405180910390f35b348015610b4b57600080fd5b50610bae60048036036040811015610b6257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc3565b6040518082815260200191505060405180910390f35b60606000600c80546001816001161561010002031660029004905014610c8657600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c7a5780601f10610c4f57610100808354040283529160200191610c7a565b820191906000526020600020905b815481529060010190602001808311610c5d57829003601f168201915b50505050509050610de1565b610cc7600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d4a565b610cd2600854611e9c565b6040516020018083805190602001908083835b60208310610d085780518252602082019150602081019050602083039250610ce5565b6001836020036101000a038019825116818451168082178552505050505050905001807f202300000000000000000000000000000000000000000000000000000000000081525060020182805190602001908083835b60208310610d815780518252602082019150602081019050602083039250610d5e565b6001836020036101000a038019825116818451168082178552505050505050905001807f204672616374696f6e7300000000000000000000000000000000000000000000815250600a019250505060405160208183030381529060405290505b90565b6000610df8610df1611fe3565b8484611feb565b6001905092915050565b6000600b60149054906101000a900460ff16610e215760009050610e36565b6000610e2b610e53565b9050600a5481029150505b90565b600063150b7a0260e01b9050949350505050565b60085481565b6000600254905090565b6000610e6a8484846121e2565b610f2b84610e76611fe3565b610f268560405180606001604052806028815260200161361c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610edc611fe3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124a39092919063ffffffff16565b611feb565b600190509392505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900460ff16905090565b6000600b60149054906101000a900460ff16610f925760009050610fa8565b6000610f9d836112a6565b9050600a5481029150505b919050565b60095481565b600061105c610fc0611fe3565b846110578560016000610fd1611fe3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b611feb565b6001905092915050565b600260065414156110df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026006819055506000339050600b60149054906101000a900460ff1661116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f746f6b656e206e6f742072656465656d6564000000000000000000000000000081525060200191505060405180910390fd5b6000611179826112a6565b9050600081116111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6e6f7468696e6720746f20636c61696d0000000000000000000000000000000081525060200191505060405180910390fd5b60006111fc83610f73565b905061120883836125eb565b611235600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684836127af565b8273ffffffffffffffffffffffffffffffffffffffff167f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf78383604051808381526020018281526020019250505060405180910390a2611293612861565b5050506001600681905550565b600a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000600d805460018160011615610100020316600290049050146113b057600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113a45780601f10611379576101008083540402835291602001916113a4565b820191906000526020600020905b81548152906001019060200180831161138757829003601f168201915b505050505090506114bb565b6113f1600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612893565b6113fc600854611e9c565b6040516020018083805190602001908083835b60208310611432578051825260208201915060208101905060208303925061140f565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106114835780518252602082019150602081019050602083039250611460565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b90565b600b60149054906101000a900460ff1681565b60006115946114de611fe3565b8461158f856040518060600160405280602581526020016136d86025913960016000611508611fe3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124a39092919063ffffffff16565b611feb565b6001905092915050565b60006115b26115ab611fe3565b84846121e2565b6001905092915050565b6000600b60149054906101000a900460ff1615611641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e20616c72656164792072656465656d65640000000000000000000081525060200191505060405180910390fd5b600061164c836112a6565b90506000611658611cb5565b9050600a548202810392505050919050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f616c726561647920696e697469616c697a65640000000000000000000000000081525060200191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16636352211e896040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561179657600080fd5b505afa1580156117aa573d6000803e3d6000fd5b505050506040513d60208110156117c057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f746f6b656e206e6f74207374616b65640000000000000000000000000000000081525060200191505060405180910390fd5b600083116118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f696e76616c6964206672616374696f6e20636f756e740000000000000000000081525060200191505060405180910390fd5b8183838502816118dc57fe5b0414611950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f696e76616c6964206672616374696f6e2070726963650000000000000000000081525060200191505060405180910390fd5b87600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550866008819055508260098190555081600a8190555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600b60146101000a81548160ff02191690831515021790555085600c9080519060200190611a189291906134cb565b5084600d9080519060200190611a2f9291906134cb565b50611a39846129e5565b611a438984612a03565b505050505050505050565b60026006541415611ac7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260068190555060003390506000349050600b60149054906101000a900460ff1615611b5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e20616c72656164792072656465656d65640000000000000000000081525060200191505060405180910390fd5b6000611b67836112a6565b90506000611b74846115bc565b90506001600b60146101000a81548160ff0219169083151502179055506000821115611ba557611ba484836125eb565b5b611bd4600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685853085612bca565b611c2384600854600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d9f9092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff167fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9298383604051808381526020018281526020019250505060405180910390a2611c81612861565b505050506001600681905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a5460095402905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60608173ffffffffffffffffffffffffffffffffffffffff166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b158015611d9257600080fd5b505afa925050508015611e8457506040513d6000823e3d601f19601f820116820180604052506020811015611dc657600080fd5b8101908080516040519392919084640100000000821115611de657600080fd5b83820191506020820185811115611dfc57600080fd5b8251866001820283011164010000000082111715611e1957600080fd5b8083526020830192505050908051906020019080838360005b83811015611e4d578082015181840152602081019050611e32565b50505050905090810190601f168015611e7a5780820380516001836020036101000a031916815260200191505b5060405250505060015b611e8d57611e96565b80915050611e97565b5b919050565b60606000821415611ee4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fde565b600082905060005b60008214611f0e578080600101915050600a8281611f0657fe5b049150611eec565b60608167ffffffffffffffff81118015611f2757600080fd5b506040519080825280601f01601f191660200182016040528015611f5a5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414611fd657600a8481611f7b57fe5b0660300160f81b82828060019003935081518110611f9557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481611fce57fe5b049350611f69565b819450505050505b919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061368a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135ae6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806136656025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135696023913960400191505060405180910390fd5b6122f9838383612f8a565b612364816040518060600160405280602681526020016135d0602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124a39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123f7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612550576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125155780820151818401526020810190506124fa565b50505050905090810190601f1680156125425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808284019050838110156125e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806136446021913960400191505060405180910390fd5b61267d82600083612f8a565b6126e88160405180606001604052806022815260200161358c602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124a39092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061273f81600254612f8f90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612830578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561282a573d6000803e3d6000fd5b5061285c565b61285b82828573ffffffffffffffffffffffffffffffffffffffff16612fd99092919063ffffffff16565b5b505050565b600061286b610e53565b9050600081141561289057600073ffffffffffffffffffffffffffffffffffffffff16ff5b50565b60608173ffffffffffffffffffffffffffffffffffffffff166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156128db57600080fd5b505afa9250505080156129cd57506040513d6000823e3d601f19601f82011682018060405250602081101561290f57600080fd5b810190808051604051939291908464010000000082111561292f57600080fd5b8382019150602082018581111561294557600080fd5b825186600182028301116401000000008211171561296257600080fd5b8083526020830192505050908051906020019080838360005b8381101561299657808201518184015260208101905061297b565b50505050905090810190601f1680156129c35780820380516001836020036101000a031916815260200191505b5060405250505060015b6129d6576129df565b809150506129e0565b5b919050565b80600560006101000a81548160ff021916908360ff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612ab260008383612f8a565b612ac78160025461256390919063ffffffff16565b600281905550612b1e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cf457808314612c74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c69642076616c75650000000000000000000000000000000000000081525060200191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612cef578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612ced573d6000803e3d6000fd5b505b612d98565b60008314612d6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c69642076616c75650000000000000000000000000000000000000081525060200191505060405180910390fd5b612d978483838873ffffffffffffffffffffffffffffffffffffffff1661307b909392919063ffffffff16565b5b5050505050565b60003090508373ffffffffffffffffffffffffffffffffffffffff166323b872dd8285856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015612e3357600080fd5b505af1925050508015612e44575060015b612e4d57612e53565b50612f85565b8373ffffffffffffffffffffffffffffffffffffffff1663095ea7b382846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015612ec457600080fd5b505af1158015612ed8573d6000803e3d6000fd5b505050508373ffffffffffffffffffffffffffffffffffffffff166323b872dd8285856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015612f6b57600080fd5b505af1158015612f7f573d6000803e3d6000fd5b50505050505b505050565b505050565b6000612fd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506124a3565b905092915050565b6130768363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061313c565b505050565b613136846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061313c565b50505050565b606061319e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661322b9092919063ffffffff16565b9050600081511115613226578080602001905160208110156131bf57600080fd5b8101908080519060200190929190505050613225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806136ae602a913960400191505060405180910390fd5b5b505050565b606061323a8484600085613243565b90509392505050565b60608247101561329e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806135f66026913960400191505060405180910390fd5b6132a7856133ec565b613319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106133695780518252602082019150602081019050602083039250613346565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146133cb576040519150601f19603f3d011682016040523d82523d6000602084013e6133d0565b606091505b50915091506133e08282866133ff565b92505050949350505050565b600080823b905060008111915050919050565b6060831561340f578290506134c4565b6000835111156134225782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561348957808201518184015260208101905061346e565b50505050905090810190601f1680156134b65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061350c57805160ff191683800117855561353a565b8280016001018555821561353a579182015b8281111561353957825182559160200191906001019061351e565b5b509050613547919061354b565b5090565b5b8082111561356457600081600090555060010161354c565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202f66172ea5ae541dc3dcc8a1ff6c327c5bb56d0796ebc38e051ceaa6777c981064736f6c634300060c0033
Deployed Bytecode Sourcemap
44766:4587:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45315:233;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13516:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47004:192;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32481:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;44992:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12485:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14167:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45083:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12337:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47201:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45018:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14897:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47980:433;;;;;;;;;;;;;:::i;:::-;;45051:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12648:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45553:223;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45116:20;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15618:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12980:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46711:288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45781:803;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47416:559;;;:::i;:::-;;44967:21;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46589:117;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13218:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45315:233;45361:19;45416:1;45399:5;45393:19;;;;;;;;;;;;;;;;:24;45389:42;;45426:5;45419:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45389:42;45467:34;45483:6;;;;;;;;;;;45467:32;;;:34::i;:::-;45509:18;:7;;:16;:18::i;:::-;45450:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45436:107;;45315:233;;:::o;13516:169::-;13599:4;13616:39;13625:12;:10;:12::i;:::-;13639:7;13648:6;13616:8;:39::i;:::-;13673:4;13666:11;;13516:169;;;;:::o;47004:192::-;47051:21;47086:8;;;;;;;;;;;47081:23;;47103:1;47096:8;;;;47081:23;47109;47135:13;:11;:13::i;:::-;47109:39;;47178:13;;47160:15;:31;47153:38;;;47004:192;;:::o;32481:164::-;32581:6;32607:30;;;32600:37;;32481:164;;;;;;:::o;44992:22::-;;;;:::o;12485:100::-;12538:7;12565:12;;12558:19;;12485:100;:::o;14167:321::-;14273:4;14290:36;14300:6;14308:9;14319:6;14290:9;:36::i;:::-;14337:121;14346:6;14354:12;:10;:12::i;:::-;14368:89;14406:6;14368:89;;;;;;;;;;;;;;;;;:11;:19;14380:6;14368:19;;;;;;;;;;;;;;;:33;14388:12;:10;:12::i;:::-;14368:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;14337:8;:121::i;:::-;14476:4;14469:11;;14167:321;;;;;:::o;45083:27::-;;;;;;;;;;;;;:::o;12337:83::-;12378:5;12403:9;;;;;;;;;;;12396:16;;12337:83;:::o;47201:210::-;47261:23;47298:8;;;;;;;;;;;47293:23;;47315:1;47308:8;;;;47293:23;47321;47347:16;47357:5;47347:9;:16::i;:::-;47321:42;;47393:13;;47375:15;:31;47368:38;;;47201:210;;;;:::o;45018:29::-;;;;:::o;14897:218::-;14985:4;15002:83;15011:12;:10;:12::i;:::-;15025:7;15034:50;15073:10;15034:11;:25;15046:12;:10;:12::i;:::-;15034:25;;;;;;;;;;;;;;;:34;15060:7;15034:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;15002:8;:83::i;:::-;15103:4;15096:11;;14897:218;;;;:::o;47980:433::-;40687:1;41293:7;;:19;;41285:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40687:1;41426:7;:18;;;;48026:21:::1;48050:10;48026:34;;48073:8;;;;;;;;;;;48065:39;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;48109:23;48135:16;48145:5;48135:9;:16::i;:::-;48109:42;;48182:1;48164:15;:19;48156:48;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;48209:20;48232:21;48247:5;48232:14;:21::i;:::-;48209:44;;48258:29;48264:5;48271:15;48258:5;:29::i;:::-;48292:48;48306:12;;;;;;;;;;;48320:5;48327:12;48292:13;:48::i;:::-;48356:5;48350:43;;;48363:15;48380:12;48350:43;;;;;;;;;;;;;;;;;;;;;;;;48398:10;:8;:10::i;:::-;41457:1;;;40643::::0;41605:7;:22;;;;47980:433::o;45051:28::-;;;;:::o;12648:119::-;12714:7;12741:9;:18;12751:7;12741:18;;;;;;;;;;;;;;;;12734:25;;12648:119;;;:::o;45553:223::-;45601:21;45660:1;45641:7;45635:21;;;;;;;;;;;;;;;;:26;45631:46;;45670:7;45663:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45631:46;45713:36;45729:6;;;;;;;;;;;45713:34;;;:36::i;:::-;45751:18;:7;;:16;:18::i;:::-;45696:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45682:89;;45553:223;;:::o;45116:20::-;;;;;;;;;;;;;:::o;15618:269::-;15711:4;15728:129;15737:12;:10;:12::i;:::-;15751:7;15760:96;15799:15;15760:96;;;;;;;;;;;;;;;;;:11;:25;15772:12;:10;:12::i;:::-;15760:25;;;;;;;;;;;;;;;:34;15786:7;15760:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15728:8;:129::i;:::-;15875:4;15868:11;;15618:269;;;;:::o;12980:175::-;13066:4;13083:42;13093:12;:10;:12::i;:::-;13107:9;13118:6;13083:9;:42::i;:::-;13143:4;13136:11;;12980:175;;;;:::o;46711:288::-;46771:21;46810:8;;;;;;;;;;;46809:9;46801:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46850:23;46876:16;46886:5;46876:9;:16::i;:::-;46850:42;;46897:21;46921:14;:12;:14::i;:::-;46897:38;;46981:13;;46963:15;:31;46947:13;:47;46940:54;;;;46711:288;;;:::o;45781:803::-;46026:1;46008:20;;:6;;;;;;;;;;;:20;;;46000:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46111:4;46065:51;;46073:7;46065:24;;;46090:8;46065:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;46057:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46169:1;46150:15;:20;46142:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46264:14;46245:15;46228:14;46210:15;:32;:50;;;;;;:68;46202:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46319:7;46310:6;;:16;;;;;;;;;;;;;;;;;;46341:8;46331:7;:18;;;;46371:15;46354:14;:32;;;;46407:14;46391:13;:30;;;;46441:13;46426:12;;:28;;;;;;;;;;;;;;;;;;46470:5;46459:8;;:16;;;;;;;;;;;;;;;;;;46488:5;46480;:13;;;;;;;;;;;;:::i;:::-;;46508:7;46498;:17;;;;;;;;;;;;:::i;:::-;;46520:25;46535:9;46520:14;:25::i;:::-;46550:29;46556:5;46563:15;46550:5;:29::i;:::-;45781:803;;;;;;;;;:::o;47416:559::-;40687:1;41293:7;;:19;;41285:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40687:1;41426:7;:18;;;;47471:21:::1;47495:10;47471:34;;47510:14;47527:9;47510:26;;47550:8;;;;;;;;;;;47549:9;47541:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;47590:23;47616:16;47626:5;47616:9;:16::i;:::-;47590:42;;47637:21;47661;47676:5;47661:14;:21::i;:::-;47637:45;;47698:4;47687:8;;:15;;;;;;;;;;;;;;;;;;47729:1;47711:15;:19;47707:54;;;47732:29;47738:5;47745:15;47732:5;:29::i;:::-;47707:54;47766:85;47784:12;;;;;;;;;;;47798:5;47805:6;47829:4;47837:13;47766:17;:85::i;:::-;47856:44;47885:5;47892:7;;47864:6;;;;;;;;;;;47856:28;;;;:44;;;;;:::i;:::-;47917:5;47910:45;;;47924:15;47941:13;47910:45;;;;;;;;;;;;;;;;;;;;;;;;47960:10;:8;:10::i;:::-;41457:1;;;;40643::::0;41605:7;:22;;;;47416:559::o;44967:21::-;;;;;;;;;;;;;:::o;46589:117::-;46634:21;46688:13;;46671:14;;:30;46664:37;;46589:117;:::o;13218:151::-;13307:7;13334:11;:18;13346:5;13334:18;;;;;;;;;;;;;;;:27;13353:7;13334:27;;;;;;;;;;;;;;;;13327:34;;13218:151;;;;:::o;42738:171::-;42806:19;42838:9;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42834:71;;;;;42891:2;42884:9;;;;;42834:71;42738:171;;;;:::o;41884:744::-;41940:13;42170:1;42161:5;:10;42157:53;;;42188:10;;;;;;;;;;;;;;;;;;;;;42157:53;42220:12;42235:5;42220:20;;42251:14;42276:78;42291:1;42283:4;:9;42276:78;;42309:8;;;;;;;42340:2;42332:10;;;;;;;;;42276:78;;;42364:19;42396:6;42386:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42364:39;;42414:13;42439:1;42430:6;:10;42414:26;;42458:5;42451:12;;42474:115;42489:1;42481:4;:9;42474:115;;42548:2;42541:4;:9;;;;;;42536:2;:14;42525:27;;42507:6;42514:7;;;;;;;42507:15;;;;;;;;;;;:45;;;;;;;;;;;42575:2;42567:10;;;;;;;;;42474:115;;;42613:6;42599:21;;;;;;41884:744;;;;:::o;674:106::-;727:15;762:10;755:17;;674:106;:::o;18765:346::-;18884:1;18867:19;;:5;:19;;;;18859:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18965:1;18946:21;;:7;:21;;;;18938:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19049:6;19019:11;:18;19031:5;19019:18;;;;;;;;;;;;;;;:27;19038:7;19019:27;;;;;;;;;;;;;;;:36;;;;19087:7;19071:32;;19080:5;19071:32;;;19096:6;19071:32;;;;;;;;;;;;;;;;;;18765:346;;;:::o;16377:539::-;16501:1;16483:20;;:6;:20;;;;16475:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16585:1;16564:23;;:9;:23;;;;16556:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16640:47;16661:6;16669:9;16680:6;16640:20;:47::i;:::-;16720:71;16742:6;16720:71;;;;;;;;;;;;;;;;;:9;:17;16730:6;16720:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;16700:9;:17;16710:6;16700:17;;;;;;;;;;;;;;;:91;;;;16825:32;16850:6;16825:9;:20;16835:9;16825:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;16802:9;:20;16812:9;16802:20;;;;;;;;;;;;;;;:55;;;;16890:9;16873:35;;16882:6;16873:35;;;16901:6;16873:35;;;;;;;;;;;;;;;;;;16377:539;;;:::o;5671:192::-;5757:7;5790:1;5785;:6;;5793:12;5777:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5817:9;5833:1;5829;:5;5817:17;;5854:1;5847:8;;;5671:192;;;;;:::o;4768:181::-;4826:7;4846:9;4862:1;4858;:5;4846:17;;4887:1;4882;:6;;4874:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4940:1;4933:8;;;4768:181;;;;:::o;17909:418::-;18012:1;17993:21;;:7;:21;;;;17985:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18065:49;18086:7;18103:1;18107:6;18065:20;:49::i;:::-;18148:68;18171:6;18148:68;;;;;;;;;;;;;;;;;:9;:18;18158:7;18148:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;18127:9;:18;18137:7;18127:18;;;;;;;;;;;;;;;:89;;;;18242:24;18259:6;18242:12;;:16;;:24;;;;:::i;:::-;18227:12;:39;;;;18308:1;18282:37;;18291:7;18282:37;;;18312:6;18282:37;;;;;;;;;;;;;;;;;;17909:418;;:::o;48569:215::-;48684:1;48666:20;;:6;:20;;;48662:118;;;48694:3;:12;;:21;48707:7;48694:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48662:118;;;48733:41;48761:3;48766:7;48740:6;48733:27;;;;:41;;;;;:::i;:::-;48662:118;48569:215;;;:::o;48418:146::-;48454:23;48480:13;:11;:13::i;:::-;48454:39;;48521:1;48502:15;:20;48498:62;;;48551:1;48530:24;;;48498:62;48418:146;:::o;42914:177::-;42984:21;43018:9;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43014:73;;;;;43073:2;43066:9;;;;;43014:73;42914:177;;;;:::o;19443:90::-;19516:9;19504;;:21;;;;;;;;;;;;;;;;;;19443:90;:::o;17198:378::-;17301:1;17282:21;;:7;:21;;;;17274:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17352:49;17381:1;17385:7;17394:6;17352:20;:49::i;:::-;17429:24;17446:6;17429:12;;:16;;:24;;;;:::i;:::-;17414:12;:39;;;;17485:30;17508:6;17485:9;:18;17495:7;17485:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;17464:9;:18;17474:7;17464:18;;;;;;;;;;;;;;;:51;;;;17552:7;17531:37;;17548:1;17531:37;;;17561:6;17531:37;;;;;;;;;;;;;;;;;;17198:378;;:::o;48789:387::-;48947:1;48929:20;;:6;:20;;;48925:247;;;48975:7;48965:6;:17;48957:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49025:4;49010:20;;:3;:20;;;49006:47;;49032:3;:12;;:21;49045:7;49032:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49006:47;48925:247;;;49089:1;49079:6;:11;49071:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49114:52;49146:5;49153:3;49158:7;49121:6;49114:31;;;;:52;;;;;;:::i;:::-;48925:247;48789:387;;;;;:::o;43310:328::-;43395:13;43419:4;43395:29;;43433:6;:19;;;43453:5;43460:3;43465:8;43433:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43429:66;;;;;43477:7;;;43429:66;43556:6;:14;;;43571:5;43578:8;43556:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43592:6;:19;;;43612:5;43619:3;43624:8;43592:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43310:328;;;;;:::o;20136:92::-;;;;:::o;5232:136::-;5290:7;5317:43;5321:1;5324;5317:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5310:50;;5232:136;;;;:::o;27926:177::-;28009:86;28029:5;28059:23;;;28084:2;28088:5;28036:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28009:19;:86::i;:::-;27926:177;;;:::o;28111:205::-;28212:96;28232:5;28262:27;;;28291:4;28297:2;28301:5;28239:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28212:19;:96::i;:::-;28111:205;;;;:::o;30231:761::-;30655:23;30681:69;30709:4;30681:69;;;;;;;;;;;;;;;;;30689:5;30681:27;;;;:69;;;;;:::i;:::-;30655:95;;30785:1;30765:10;:17;:21;30761:224;;;30907:10;30896:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30888:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30761:224;30231:761;;;:::o;23925:195::-;24028:12;24060:52;24082:6;24090:4;24096:1;24099:12;24060:21;:52::i;:::-;24053:59;;23925:195;;;;;:::o;24977:530::-;25104:12;25162:5;25137:21;:30;;25129:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25229:18;25240:6;25229:10;:18::i;:::-;25221:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25355:12;25369:23;25396:6;:11;;25416:5;25424:4;25396:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25354:75;;;;25447:52;25465:7;25474:10;25486:12;25447:17;:52::i;:::-;25440:59;;;;24977:530;;;;;;:::o;21007:422::-;21067:4;21275:12;21386:7;21374:20;21366:28;;21420:1;21413:4;:8;21406:15;;;21007:422;;;:::o;26513:742::-;26628:12;26657:7;26653:595;;;26688:10;26681:17;;;;26653:595;26822:1;26802:10;:17;:21;26798:439;;;27065:10;27059:17;27126:15;27113:10;27109:2;27105:19;27098:44;27013:148;27208:12;27201:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26513:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://2f66172ea5ae541dc3dcc8a1ff6c327c5bb56d0796ebc38e051ceaa6777c9810
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.