Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
2061
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
four
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Pausable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC404.sol"; contract four is ERC404, Pausable { using Strings for uint256; string public baseTokenURI; mapping (address => uint256) public userBuylimit; mapping (address => uint256) public userSelllimit; bool public publicMintPaused = true; bool public applyTxLimit = false; uint256 public mintPrice = 0.0404 ether; uint256 public publicMintSize; uint256 public publicMinted; uint256 public buyLimit; uint256 public sellLimit; uint256 public txLimit; constructor( address _owner, uint256 _totalSupply, uint256 _publicMintSize, uint8 _decimal, uint256 _buylimit, uint256 _selllimit ) ERC404("FOUR", "404", _decimal, _totalSupply, _owner) { publicMintSize = _publicMintSize; balanceOf[_owner] = (_totalSupply - _publicMintSize) * 10 ** _decimal; buyLimit = _buylimit * 10 ** _decimal; sellLimit = _selllimit * 10 ** _decimal; txLimit = 10 * 10 ** _decimal; setWhitelist(_owner, true); setWhitelist(address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), true); // Router V2 } function publicMint(uint256 amount) external payable { require(!publicMintPaused, "Public mint is paused"); require(amount > 0, "Amount to mint is 0"); require(publicMinted + amount <= publicMintSize, "Sold out!"); require(msg.value == mintPrice * amount, "Must provide exact required ETH"); unchecked { publicMinted = publicMinted + amount; balanceOf[msg.sender] += amount * _getUnit(); } for(uint256 i; i < amount;){ _mint(msg.sender); unchecked { i++; } } } function withdrawAll() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Failed to send ether"); } function setPublicMintPaused(bool _publicMintPaused) external onlyOwner { publicMintPaused = _publicMintPaused; } function setMintPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice * 10**18; } function setLimit(uint256 _buylimit, uint256 _selllimit) public onlyOwner{ buyLimit = _buylimit; sellLimit = _selllimit; } function _mint( address to ) internal override whenNotPaused{ return super._mint(to); } function startApplyingLimit() external onlyOwner{ applyTxLimit = true; } function stopApplyingLimit() external onlyOwner{ applyTxLimit = false; } function _transfer( address from, address to, uint256 amount ) internal override virtual whenNotPaused returns (bool){ if(applyTxLimit){ require(amount < txLimit, "exceed tx limit"); } if(!whitelist[from]){ userSelllimit[from] += amount; require(userSelllimit[from] <= sellLimit, "not allowed anymore to sell"); } if(!whitelist[to]){ userBuylimit[to] += amount; require(userBuylimit[to] <= buyLimit, "not allowed anymore to buy"); } return super._transfer(from, to, amount); } function setTokenURI(string memory _tokenURI) public onlyOwner { baseTokenURI = _tokenURI; } function setNameSymbol( string memory _name, string memory _symbol ) public onlyOwner { _setNameSymbol(_name, _symbol); } function tokenURI(uint256 id) public view override returns (string memory) { return bytes(baseTokenURI).length > 0 ? string.concat(baseTokenURI, id.toString()) : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol) pragma solidity ^0.8.20; import {Ownable} from "./Ownable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is specified at deployment time in the constructor for `Ownable`. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); if (pendingOwner() != sender) { revert OwnableUnauthorizedAccount(sender); } _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// File: contracts/ERC404.sol import "@openzeppelin/contracts/access/Ownable2Step.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; pragma solidity ^0.8.0; abstract contract ERC721Receiver { function onERC721Received( address, address, uint256, bytes calldata ) external virtual returns (bytes4) { return ERC721Receiver.onERC721Received.selector; } } abstract contract ERC404 is Ownable2Step { // Events bytes32 constant private TRANSFER_TOPIC = keccak256(bytes("Transfer(address,address,uint256)")); event ERC20Transfer(bytes32 indexed topic0, address indexed from, address indexed to, uint256 tokens) anonymous; // event ERC20Transfer( // address indexed from, // address indexed to, // uint256 amount // ); event Approval( address indexed owner, address indexed spender, uint256 amount ); event Transfer( address indexed from, address indexed to, uint256 indexed id ); event ERC721Approval( address indexed owner, address indexed spender, uint256 indexed id ); event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); // Errors error NotFound(); error AlreadyExists(); error InvalidRecipient(); error InvalidSender(); error UnsafeRecipient(); error Unauthorized(); error InvalidOwner(); // Metadata /// @dev Token name string public name; /// @dev Token symbol string public symbol; /// @dev Decimals for fractional representation uint8 public immutable decimals; /// @dev Total supply in fractionalized representation uint256 public immutable totalSupply; /// @dev Current mint counter, monotonically increasing to ensure accurate ownership uint256 public minted; // Mappings /// @dev Balance of user in fractional representation mapping(address => uint256) public balanceOf; /// @dev Allowance of user in fractional representation mapping(address => mapping(address => uint256)) public allowance; /// @dev Approval in native representaion mapping(uint256 => address) public getApproved; /// @dev Approval for all in native representation mapping(address => mapping(address => bool)) public isApprovedForAll; /// @dev Owner of id in native representation mapping(uint256 => address) internal _ownerOf; /// @dev Array of owned ids in native representation mapping(address => uint256[]) internal _owned; /// @dev Tracks indices for the _owned mapping mapping(uint256 => uint256) internal _ownedIndex; /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc) mapping(address => bool) public whitelist; // Constructor constructor( string memory _name, string memory _symbol, uint8 _decimals, uint256 _totalNativeSupply, address _owner ) Ownable(_owner) { name = _name; symbol = _symbol; decimals = _decimals; totalSupply = _totalNativeSupply * (10 ** decimals); } /// @notice Initialization function to set pairs / etc /// saving gas by avoiding mint / burn on unnecessary targets function setWhitelist(address target, bool state) public onlyOwner { whitelist[target] = state; } /// @notice Function to find owner of a given native token function ownerOf(uint256 id) public view virtual returns (address owner) { owner = _ownerOf[id]; if (owner == address(0)) { revert NotFound(); } } /// @notice tokenURI must be implemented by child contract function tokenURI(uint256 id) public view virtual returns (string memory); /// @notice Function for token approvals /// @dev This function assumes id / native if amount less than or equal to current max id function approve( address spender, uint256 amountOrId ) public virtual returns (bool) { if (amountOrId <= minted && amountOrId > 0) { address owner = _ownerOf[amountOrId]; if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) { revert Unauthorized(); } getApproved[amountOrId] = spender; emit Approval(owner, spender, amountOrId); } else { allowance[msg.sender][spender] = amountOrId; emit Approval(msg.sender, spender, amountOrId); } return true; } /// @notice Function native approvals function setApprovalForAll(address operator, bool approved) public virtual { isApprovedForAll[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, operator, approved); } /// @notice Function for mixed transfers /// @dev This function assumes id / native if amount less than or equal to current max id function transferFrom( address from, address to, uint256 amountOrId ) public virtual { if (amountOrId <= minted) { if (from != _ownerOf[amountOrId]) { revert InvalidSender(); } if (to == address(0)) { revert InvalidRecipient(); } if ( msg.sender != from && !isApprovedForAll[from][msg.sender] && msg.sender != getApproved[amountOrId] ) { revert Unauthorized(); } balanceOf[from] -= _getUnit(); unchecked { balanceOf[to] += _getUnit(); } _ownerOf[amountOrId] = to; delete getApproved[amountOrId]; // update _owned for sender uint256 updatedId = _owned[from][_owned[from].length - 1]; _owned[from][_ownedIndex[amountOrId]] = updatedId; // pop _owned[from].pop(); // update index for the moved id _ownedIndex[updatedId] = _ownedIndex[amountOrId]; // push token to to owned _owned[to].push(amountOrId); // update index for to owned _ownedIndex[amountOrId] = _owned[to].length - 1; emit Transfer(from, to, amountOrId); emit ERC20Transfer(TRANSFER_TOPIC, from, to, _getUnit()); } else { uint256 allowed = allowance[from][msg.sender]; if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amountOrId; _transfer(from, to, amountOrId); } } /// @notice Function for fractional transfers function transfer( address to, uint256 amount ) public virtual returns (bool) { return _transfer(msg.sender, to, amount); } /// @notice Function for native transfers with contract support function safeTransferFrom( address from, address to, uint256 id ) public virtual { transferFrom(from, to, id); if ( to.code.length != 0 && ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") != ERC721Receiver.onERC721Received.selector ) { revert UnsafeRecipient(); } } /// @notice Function for native transfers with contract support and callback data function safeTransferFrom( address from, address to, uint256 id, bytes calldata data ) public virtual { transferFrom(from, to, id); if ( to.code.length != 0 && ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) != ERC721Receiver.onERC721Received.selector ) { revert UnsafeRecipient(); } } /// @notice Internal function for fractional transfers function _transfer( address from, address to, uint256 amount ) internal virtual returns (bool) { uint256 unit = _getUnit(); uint256 balanceBeforeSender = balanceOf[from]; uint256 balanceBeforeReceiver = balanceOf[to]; balanceOf[from] -= amount; unchecked { balanceOf[to] += amount; } // Skip burn for certain addresses to save gas if (!whitelist[from]) { uint256 tokens_to_burn = (balanceBeforeSender / unit) - (balanceOf[from] / unit); for (uint256 i = 0; i < tokens_to_burn; i++) { _burn(from); } } // Skip minting for certain addresses to save gas if (!whitelist[to]) { uint256 tokens_to_mint = (balanceOf[to] / unit) - (balanceBeforeReceiver / unit); for (uint256 i = 0; i < tokens_to_mint; i++) { _mint(to); } } emit ERC20Transfer(TRANSFER_TOPIC, from, to, amount); return true; } // Internal utility logic function _getUnit() internal view returns (uint256) { return 10 ** decimals; } function _mint(address to) internal virtual { if (to == address(0)) { revert InvalidRecipient(); } unchecked { minted++; } uint256 id = minted; if (_ownerOf[id] != address(0)) { revert AlreadyExists(); } _ownerOf[id] = to; _owned[to].push(id); _ownedIndex[id] = _owned[to].length - 1; emit Transfer(address(0), to, id); } function _burn(address from) internal virtual { if (from == address(0)) { revert InvalidSender(); } uint256 id = _owned[from][_owned[from].length - 1]; _owned[from].pop(); delete _ownedIndex[id]; delete _ownerOf[id]; delete getApproved[id]; emit Transfer(from, address(0), id); } function _setNameSymbol( string memory _name, string memory _symbol ) internal { name = _name; symbol = _symbol; } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_publicMintSize","type":"uint256"},{"internalType":"uint8","name":"_decimal","type":"uint8"},{"internalType":"uint256","name":"_buylimit","type":"uint256"},{"internalType":"uint256","name":"_selllimit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":true,"inputs":[{"indexed":true,"internalType":"bytes32","name":"topic0","type":"bytes32"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"applyTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buylimit","type":"uint256"},{"internalType":"uint256","name":"_selllimit","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintPaused","type":"bool"}],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startApplyingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopApplyingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userBuylimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userSelllimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550668f879600ed00006012553480156200005257600080fd5b506040516200527338038062005273833981810160405281019062000078919062000624565b6040518060400160405280600481526020017f464f5552000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f343034000000000000000000000000000000000000000000000000000000000081525084878980600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200015d5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001549190620006d1565b60405180910390fd5b6200016e816200030660201b60201c565b5084600290816200018091906200095e565b5083600390816200019291906200095e565b508260ff1660808160ff1681525050608051600a620001b2919062000bc8565b82620001bf919062000c19565b60a0818152505050505050506000600d60006101000a81548160ff0219169083151502179055508360138190555082600a620001fc919062000bc8565b84866200020a919062000c64565b62000216919062000c19565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600a62000268919062000bc8565b8262000275919062000c19565b60158190555082600a6200028a919062000bc8565b8162000297919062000c19565b60168190555082600a620002ac919062000bc8565b600a620002ba919062000c19565b601781905550620002d38660016200033f60201b60201c565b620002fa737a250d5630b4cf539739df2c5dacb4c659f2488d60016200033f60201b60201c565b50505050505062000c9f565b600160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556200033c81620003aa60201b60201c565b50565b6200034f6200046e60201b60201c565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200047e6200051060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004a46200051860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200050e57620004d06200051060201b60201c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620005059190620006d1565b60405180910390fd5b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005738262000546565b9050919050565b620005858162000566565b81146200059157600080fd5b50565b600081519050620005a5816200057a565b92915050565b6000819050919050565b620005c081620005ab565b8114620005cc57600080fd5b50565b600081519050620005e081620005b5565b92915050565b600060ff82169050919050565b620005fe81620005e6565b81146200060a57600080fd5b50565b6000815190506200061e81620005f3565b92915050565b60008060008060008060c0878903121562000644576200064362000541565b5b60006200065489828a0162000594565b96505060206200066789828a01620005cf565b95505060406200067a89828a01620005cf565b94505060606200068d89828a016200060d565b9350506080620006a089828a01620005cf565b92505060a0620006b389828a01620005cf565b9150509295509295509295565b620006cb8162000566565b82525050565b6000602082019050620006e86000830184620006c0565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200077057607f821691505b60208210810362000786576200078562000728565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007b1565b620007fc8683620007b1565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200083f620008396200083384620005ab565b62000814565b620005ab565b9050919050565b6000819050919050565b6200085b836200081e565b620008736200086a8262000846565b848454620007be565b825550505050565b600090565b6200088a6200087b565b6200089781848462000850565b505050565b5b81811015620008bf57620008b360008262000880565b6001810190506200089d565b5050565b601f8211156200090e57620008d8816200078c565b620008e384620007a1565b81016020851015620008f3578190505b6200090b6200090285620007a1565b8301826200089c565b50505b505050565b600082821c905092915050565b6000620009336000198460080262000913565b1980831691505092915050565b60006200094e838362000920565b9150826002028217905092915050565b6200096982620006ee565b67ffffffffffffffff811115620009855762000984620006f9565b5b62000991825462000757565b6200099e828285620008c3565b600060209050601f831160018114620009d65760008415620009c1578287015190505b620009cd858262000940565b86555062000a3d565b601f198416620009e6866200078c565b60005b8281101562000a1057848901518255600182019150602085019450602081019050620009e9565b8683101562000a30578489015162000a2c601f89168262000920565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ad35780860481111562000aab5762000aaa62000a45565b5b600185161562000abb5780820291505b808102905062000acb8562000a74565b945062000a8b565b94509492505050565b60008262000aee576001905062000bc1565b8162000afe576000905062000bc1565b816001811462000b17576002811462000b225762000b58565b600191505062000bc1565b60ff84111562000b375762000b3662000a45565b5b8360020a91508482111562000b515762000b5062000a45565b5b5062000bc1565b5060208310610133831016604e8410600b841016171562000b925782820a90508381111562000b8c5762000b8b62000a45565b5b62000bc1565b62000ba1848484600162000a81565b9250905081840481111562000bbb5762000bba62000a45565b5b81810290505b9392505050565b600062000bd582620005ab565b915062000be283620005e6565b925062000c117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000adc565b905092915050565b600062000c2682620005ab565b915062000c3383620005ab565b925082820262000c4381620005ab565b9150828204841483151762000c5d5762000c5c62000a45565b5b5092915050565b600062000c7182620005ab565b915062000c7e83620005ab565b925082820390508181111562000c995762000c9862000a45565b5b92915050565b60805160a0516145a762000ccc6000396000610dff015260008181611840015261231c01526145a76000f3fe6080604052600436106102725760003560e01c8063715018a61161014f578063c6a6035a116100c1578063e30c39781161007a578063e30c397814610935578063e985e9c514610960578063f0306ea41461099d578063f2fde38b146109b4578063f349b173146109dd578063f4a0a52814610a1a57610272565b8063c6a6035a14610813578063c87b56dd1461082a578063d547cfb714610867578063dd62ed3e14610892578063e0df5b6f146108cf578063e2d6f33a146108f857610272565b806395d89b411161011357806395d89b41146106f15780639b19251a1461071c578063a22cb46514610759578063a4f4f8af14610782578063a9059cbb146107ad578063b88d4fde146107ea57610272565b8063715018a61461065657806379ba50971461066d57806380c41bff14610684578063853828b6146106af5780638da5cb5b146106c657610272565b806342842e0e116101e8578063589210d9116101ac578063589210d9146105305780635c975abb1461055b5780636352211e146105865780636817c76c146105c35780636caae832146105ee57806370a082311461061957610272565b806342842e0e1461045f5780634f02c420146104885780634f91e48c146104b3578063504334c2146104de57806353d6fd591461050757610272565b8063207add911161023a578063207add911461037257806323b872dd1461039b5780632db11544146103c4578063313ce567146103e0578063339493481461040b57806333d9d5fd1461043457610272565b806306fdde0314610277578063081812fc146102a2578063095ea7b3146102df57806318160ddd1461031c5780631e70b6df14610347575b600080fd5b34801561028357600080fd5b5061028c610a43565b604051610299919061329f565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c4919061330b565b610ad1565b6040516102d69190613379565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906133c0565b610b04565b604051610313919061341b565b60405180910390f35b34801561032857600080fd5b50610331610dfd565b60405161033e9190613445565b60405180910390f35b34801561035357600080fd5b5061035c610e21565b604051610369919061341b565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613460565b610e34565b005b3480156103a757600080fd5b506103c260048036038101906103bd91906134a0565b610e4e565b005b6103de60048036038101906103d9919061330b565b611684565b005b3480156103ec57600080fd5b506103f561183e565b604051610402919061350f565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190613556565b611862565b005b34801561044057600080fd5b50610449611887565b604051610456919061341b565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906134a0565b61189a565b005b34801561049457600080fd5b5061049d6119cd565b6040516104aa9190613445565b60405180910390f35b3480156104bf57600080fd5b506104c86119d3565b6040516104d59190613445565b60405180910390f35b3480156104ea57600080fd5b50610505600480360381019061050091906136b8565b6119d9565b005b34801561051357600080fd5b5061052e60048036038101906105299190613730565b6119ef565b005b34801561053c57600080fd5b50610545611a52565b6040516105529190613445565b60405180910390f35b34801561056757600080fd5b50610570611a58565b60405161057d919061341b565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a8919061330b565b611a6f565b6040516105ba9190613379565b60405180910390f35b3480156105cf57600080fd5b506105d8611b12565b6040516105e59190613445565b60405180910390f35b3480156105fa57600080fd5b50610603611b18565b6040516106109190613445565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613770565b611b1e565b60405161064d9190613445565b60405180910390f35b34801561066257600080fd5b5061066b611b36565b005b34801561067957600080fd5b50610682611b4a565b005b34801561069057600080fd5b50610699611bd9565b6040516106a69190613445565b60405180910390f35b3480156106bb57600080fd5b506106c4611bdf565b005b3480156106d257600080fd5b506106db611c96565b6040516106e89190613379565b60405180910390f35b3480156106fd57600080fd5b50610706611cbf565b604051610713919061329f565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613770565b611d4d565b604051610750919061341b565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190613730565b611d6d565b005b34801561078e57600080fd5b50610797611e6a565b6040516107a49190613445565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf91906133c0565b611e70565b6040516107e1919061341b565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c91906137fd565b611e85565b005b34801561081f57600080fd5b50610828611fbe565b005b34801561083657600080fd5b50610851600480360381019061084c919061330b565b611fe3565b60405161085e919061329f565b60405180910390f35b34801561087357600080fd5b5061087c612043565b604051610889919061329f565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190613885565b6120d1565b6040516108c69190613445565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906138c5565b6120f6565b005b34801561090457600080fd5b5061091f600480360381019061091a9190613770565b612111565b60405161092c9190613445565b60405180910390f35b34801561094157600080fd5b5061094a612129565b6040516109579190613379565b60405180910390f35b34801561096c57600080fd5b5061098760048036038101906109829190613885565b612153565b604051610994919061341b565b60405180910390f35b3480156109a957600080fd5b506109b2612182565b005b3480156109c057600080fd5b506109db60048036038101906109d69190613770565b6121a7565b005b3480156109e957600080fd5b50610a0460048036038101906109ff9190613770565b612254565b604051610a119190613445565b60405180910390f35b348015610a2657600080fd5b50610a416004803603810190610a3c919061330b565b61226c565b005b60028054610a509061393d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7c9061393d565b8015610ac95780601f10610a9e57610100808354040283529160200191610ac9565b820191906000526020600020905b815481529060010190602001808311610aac57829003601f168201915b505050505081565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006004548211158015610b185750600082115b15610d0c5760006009600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c185750600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610c4f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836007600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051610cfe9190613445565b60405180910390a350610df3565b81600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610dea9190613445565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160019054906101000a900460ff1681565b610e3c612291565b81601581905550806016819055505050565b600454811161153c576009600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610eef576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f55576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156110185750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561108357506007600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156110ba576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110c2612318565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611110919061399d565b9250508190555061111f612318565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506007600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611283919061399d565b81548110611294576112936139d1565b5b9060005260206000200154905080600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600b60008581526020019081526020016000205481548110611306576113056139d1565b5b9060005260206000200181905550600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061136357611362613a00565b5b60019003818190600052602060002001600090559055600b600083815260200190815260200160002054600b600083815260200190815260200160002081905550600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556001600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611459919061399d565b600b600084815260200190815260200160002081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff166040518060600160405280602181526020016145516021913980519060200120611521612318565b60405161152e9190613445565b60405180910390a35061167f565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116715781816115f0919061399d565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b61167c84848461234c565b50505b505050565b601160009054906101000a900460ff16156116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90613a7b565b60405180910390fd5b60008111611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613ae7565b60405180910390fd5b601354816014546117289190613b07565b1115611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613b87565b60405180910390fd5b806012546117779190613ba7565b34146117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af90613c35565b60405180910390fd5b80601454016014819055506117cb612318565b8102600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060005b8181101561183a5761182d3361261c565b808060010191505061181c565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61186a612291565b80601160006101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b6118a5838383610e4e565b60008273ffffffffffffffffffffffffffffffffffffffff163b14158015611991575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161192c93929190613c8c565b6020604051808303816000875af115801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f9190613d2e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156119c8576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60045481565b60165481565b6119e1612291565b6119eb8282612630565b5050565b6119f7612291565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6000600d60009054906101000a900460ff16905090565b60006009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b0d576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60125481565b60175481565b60056020528060005260406000206000915090505481565b611b3e612291565b611b486000612654565b565b6000611b54612685565b90508073ffffffffffffffffffffffffffffffffffffffff16611b75612129565b73ffffffffffffffffffffffffffffffffffffffff1614611bcd57806040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611bc49190613379565b60405180910390fd5b611bd681612654565b50565b60135481565b611be7612291565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611c0d90613d89565b60006040518083038185875af1925050503d8060008114611c4a576040519150601f19603f3d011682016040523d82523d6000602084013e611c4f565b606091505b5050905080611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613dea565b60405180910390fd5b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60038054611ccc9061393d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf89061393d565b8015611d455780601f10611d1a57610100808354040283529160200191611d45565b820191906000526020600020905b815481529060010190602001808311611d2857829003601f168201915b505050505081565b600c6020528060005260406000206000915054906101000a900460ff1681565b80600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e5e919061341b565b60405180910390a35050565b60145481565b6000611e7d33848461234c565b905092915050565b611e90858585610e4e565b60008473ffffffffffffffffffffffffffffffffffffffff163b14158015611f80575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b8152600401611f1b959493929190613e37565b6020604051808303816000875af1158015611f3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f5e9190613d2e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611fb7576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b611fc6612291565b6001601160016101000a81548160ff021916908315150217905550565b60606000600e8054611ff49061393d565b905011612010576040518060200160405280600081525061203c565b600e61201b8361268d565b60405160200161202c929190613f59565b6040516020818303038152906040525b9050919050565b600e80546120509061393d565b80601f016020809104026020016040519081016040528092919081815260200182805461207c9061393d565b80156120c95780601f1061209e576101008083540402835291602001916120c9565b820191906000526020600020905b8154815290600101906020018083116120ac57829003601f168201915b505050505081565b6006602052816000526040600020602052806000526040600020600091509150505481565b6120fe612291565b80600e908161210d9190614114565b5050565b600f6020528060005260406000206000915090505481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61218a612291565b6000601160016101000a81548160ff021916908315150217905550565b6121af612291565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1661220f611c96565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60106020528060005260406000206000915090505481565b612274612291565b670de0b6b3a7640000816122889190613ba7565b60128190555050565b612299612685565b73ffffffffffffffffffffffffffffffffffffffff166122b7611c96565b73ffffffffffffffffffffffffffffffffffffffff1614612316576122da612685565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161230d9190613379565b60405180910390fd5b565b60007f0000000000000000000000000000000000000000000000000000000000000000600a6123479190614319565b905090565b600061235661275b565b601160019054906101000a900460ff16156123b05760175482106123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a6906143b0565b60405180910390fd5b5b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124dc5781601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124509190613b07565b92505081905550601654601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d29061441c565b60405180910390fd5b5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126085781600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461257c9190613b07565b92505081905550601554600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fe90614488565b60405180910390fd5b5b61261384848461279c565b90509392505050565b61262461275b565b61262d81612b06565b50565b816002908161263f9190614114565b50806003908161264f9190614114565b505050565b600160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561268281612d9c565b50565b600033905090565b60606000600161269c84612e60565b01905060008167ffffffffffffffff8111156126bb576126ba61358d565b5b6040519080825280601f01601f1916602001820160405280156126ed5781602001600182028036833780820191505090505b509050600082602001820190505b600115612750578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612744576127436144a8565b5b049450600085036126fb575b819350505050919050565b612763611a58565b1561279a576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000806127a7612318565b90506000600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612880919061399d565b9250508190555084600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129b457600083600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297291906144d7565b848461297e91906144d7565b612988919061399d565b905060005b818110156129b15761299e89612fb3565b80806129a990614508565b91505061298d565b50505b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a945760008382612a1391906144d7565b84600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a5e91906144d7565b612a68919061399d565b905060005b81811015612a9157612a7e8861261c565b8080612a8990614508565b915050612a6d565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16604051806060016040528060218152602001614551602191398051906020012087604051612af09190613445565b60405180910390a3600193505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b6c576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60046000815480929190600101919050555060006004549050600073ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c1e576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150556001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612d25919061399d565b600b600083815260200190815260200160002081905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612ebe577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612eb457612eb36144a8565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612efb576d04ee2d6d415b85acef81000000008381612ef157612ef06144a8565b5b0492506020810190505b662386f26fc100008310612f2a57662386f26fc100008381612f2057612f1f6144a8565b5b0492506010810190505b6305f5e1008310612f53576305f5e1008381612f4957612f486144a8565b5b0492506008810190505b6127108310612f78576127108381612f6e57612f6d6144a8565b5b0492506004810190505b60648310612f9b5760648381612f9157612f906144a8565b5b0492506002810190505b600a8310612faa576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613019576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506130a9919061399d565b815481106130ba576130b96139d1565b5b90600052602060002001549050600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061311657613115613a00565b5b60019003818190600052602060002001600090559055600b6000828152602001908152602001600020600090556009600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556007600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905580600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561324957808201518184015260208101905061322e565b60008484015250505050565b6000601f19601f8301169050919050565b60006132718261320f565b61327b818561321a565b935061328b81856020860161322b565b61329481613255565b840191505092915050565b600060208201905081810360008301526132b98184613266565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6132e8816132d5565b81146132f357600080fd5b50565b600081359050613305816132df565b92915050565b600060208284031215613321576133206132cb565b5b600061332f848285016132f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061336382613338565b9050919050565b61337381613358565b82525050565b600060208201905061338e600083018461336a565b92915050565b61339d81613358565b81146133a857600080fd5b50565b6000813590506133ba81613394565b92915050565b600080604083850312156133d7576133d66132cb565b5b60006133e5858286016133ab565b92505060206133f6858286016132f6565b9150509250929050565b60008115159050919050565b61341581613400565b82525050565b6000602082019050613430600083018461340c565b92915050565b61343f816132d5565b82525050565b600060208201905061345a6000830184613436565b92915050565b60008060408385031215613477576134766132cb565b5b6000613485858286016132f6565b9250506020613496858286016132f6565b9150509250929050565b6000806000606084860312156134b9576134b86132cb565b5b60006134c7868287016133ab565b93505060206134d8868287016133ab565b92505060406134e9868287016132f6565b9150509250925092565b600060ff82169050919050565b613509816134f3565b82525050565b60006020820190506135246000830184613500565b92915050565b61353381613400565b811461353e57600080fd5b50565b6000813590506135508161352a565b92915050565b60006020828403121561356c5761356b6132cb565b5b600061357a84828501613541565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135c582613255565b810181811067ffffffffffffffff821117156135e4576135e361358d565b5b80604052505050565b60006135f76132c1565b905061360382826135bc565b919050565b600067ffffffffffffffff8211156136235761362261358d565b5b61362c82613255565b9050602081019050919050565b82818337600083830152505050565b600061365b61365684613608565b6135ed565b90508281526020810184848401111561367757613676613588565b5b613682848285613639565b509392505050565b600082601f83011261369f5761369e613583565b5b81356136af848260208601613648565b91505092915050565b600080604083850312156136cf576136ce6132cb565b5b600083013567ffffffffffffffff8111156136ed576136ec6132d0565b5b6136f98582860161368a565b925050602083013567ffffffffffffffff81111561371a576137196132d0565b5b6137268582860161368a565b9150509250929050565b60008060408385031215613747576137466132cb565b5b6000613755858286016133ab565b925050602061376685828601613541565b9150509250929050565b600060208284031215613786576137856132cb565b5b6000613794848285016133ab565b91505092915050565b600080fd5b600080fd5b60008083601f8401126137bd576137bc613583565b5b8235905067ffffffffffffffff8111156137da576137d961379d565b5b6020830191508360018202830111156137f6576137f56137a2565b5b9250929050565b600080600080600060808688031215613819576138186132cb565b5b6000613827888289016133ab565b9550506020613838888289016133ab565b9450506040613849888289016132f6565b935050606086013567ffffffffffffffff81111561386a576138696132d0565b5b613876888289016137a7565b92509250509295509295909350565b6000806040838503121561389c5761389b6132cb565b5b60006138aa858286016133ab565b92505060206138bb858286016133ab565b9150509250929050565b6000602082840312156138db576138da6132cb565b5b600082013567ffffffffffffffff8111156138f9576138f86132d0565b5b6139058482850161368a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061395557607f821691505b6020821081036139685761396761390e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139a8826132d5565b91506139b3836132d5565b92508282039050818111156139cb576139ca61396e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b6000613a6560158361321a565b9150613a7082613a2f565b602082019050919050565b60006020820190508181036000830152613a9481613a58565b9050919050565b7f416d6f756e7420746f206d696e74206973203000000000000000000000000000600082015250565b6000613ad160138361321a565b9150613adc82613a9b565b602082019050919050565b60006020820190508181036000830152613b0081613ac4565b9050919050565b6000613b12826132d5565b9150613b1d836132d5565b9250828201905080821115613b3557613b3461396e565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000613b7160098361321a565b9150613b7c82613b3b565b602082019050919050565b60006020820190508181036000830152613ba081613b64565b9050919050565b6000613bb2826132d5565b9150613bbd836132d5565b9250828202613bcb816132d5565b91508282048414831517613be257613be161396e565b5b5092915050565b7f4d7573742070726f766964652065786163742072657175697265642045544800600082015250565b6000613c1f601f8361321a565b9150613c2a82613be9565b602082019050919050565b60006020820190508181036000830152613c4e81613c12565b9050919050565b600082825260208201905092915050565b50565b6000613c76600083613c55565b9150613c8182613c66565b600082019050919050565b6000608082019050613ca1600083018661336a565b613cae602083018561336a565b613cbb6040830184613436565b8181036060830152613ccc81613c69565b9050949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d0b81613cd6565b8114613d1657600080fd5b50565b600081519050613d2881613d02565b92915050565b600060208284031215613d4457613d436132cb565b5b6000613d5284828501613d19565b91505092915050565b600081905092915050565b6000613d73600083613d5b565b9150613d7e82613c66565b600082019050919050565b6000613d9482613d66565b9150819050919050565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b6000613dd460148361321a565b9150613ddf82613d9e565b602082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b6000613e168385613c55565b9350613e23838584613639565b613e2c83613255565b840190509392505050565b6000608082019050613e4c600083018861336a565b613e59602083018761336a565b613e666040830186613436565b8181036060830152613e79818486613e0a565b90509695505050505050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613eb28161393d565b613ebc8186613e85565b94506001821660008114613ed75760018114613eec57613f1f565b60ff1983168652811515820286019350613f1f565b613ef585613e90565b60005b83811015613f1757815481890152600182019150602081019050613ef8565b838801955050505b50505092915050565b6000613f338261320f565b613f3d8185613e85565b9350613f4d81856020860161322b565b80840191505092915050565b6000613f658285613ea5565b9150613f718284613f28565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f8d565b613fd48683613f8d565b95508019841693508086168417925050509392505050565b6000819050919050565b600061401161400c614007846132d5565b613fec565b6132d5565b9050919050565b6000819050919050565b61402b83613ff6565b61403f61403782614018565b848454613f9a565b825550505050565b600090565b614054614047565b61405f818484614022565b505050565b5b818110156140835761407860008261404c565b600181019050614065565b5050565b601f8211156140c85761409981613e90565b6140a284613f7d565b810160208510156140b1578190505b6140c56140bd85613f7d565b830182614064565b50505b505050565b600082821c905092915050565b60006140eb600019846008026140cd565b1980831691505092915050565b600061410483836140da565b9150826002028217905092915050565b61411d8261320f565b67ffffffffffffffff8111156141365761413561358d565b5b614140825461393d565b61414b828285614087565b600060209050601f83116001811461417e576000841561416c578287015190505b61417685826140f8565b8655506141de565b601f19841661418c86613e90565b60005b828110156141b45784890151825560018201915060208501945060208101905061418f565b868310156141d157848901516141cd601f8916826140da565b8355505b6001600288020188555050505b505050505050565b60008160011c9050919050565b6000808291508390505b600185111561423d578086048111156142195761421861396e565b5b60018516156142285780820291505b8081029050614236856141e6565b94506141fd565b94509492505050565b6000826142565760019050614312565b816142645760009050614312565b816001811461427a5760028114614284576142b3565b6001915050614312565b60ff8411156142965761429561396e565b5b8360020a9150848211156142ad576142ac61396e565b5b50614312565b5060208310610133831016604e8410600b84101617156142e85782820a9050838111156142e3576142e261396e565b5b614312565b6142f584848460016141f3565b9250905081840481111561430c5761430b61396e565b5b81810290505b9392505050565b6000614324826132d5565b915061432f836134f3565b925061435c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614246565b905092915050565b7f657863656564207478206c696d69740000000000000000000000000000000000600082015250565b600061439a600f8361321a565b91506143a582614364565b602082019050919050565b600060208201905081810360008301526143c98161438d565b9050919050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c0000000000600082015250565b6000614406601b8361321a565b9150614411826143d0565b602082019050919050565b60006020820190508181036000830152614435816143f9565b9050919050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f20627579000000000000600082015250565b6000614472601a8361321a565b915061447d8261443c565b602082019050919050565b600060208201905081810360008301526144a181614465565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144e2826132d5565b91506144ed836132d5565b9250826144fd576144fc6144a8565b5b828204905092915050565b6000614513826132d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145455761454461396e565b5b60018201905091905056fe5472616e7366657228616464726573732c616464726573732c75696e7432353629a2646970667358221220caf90702c96b4eb20df1fd11c3a3c1466ca6c4ab2d82393d02952d80f383de3064736f6c63430008150033000000000000000000000000b314dc5e86fae86dbdef13b723c1db42c45adab00000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000005f5e100
Deployed Bytecode
0x6080604052600436106102725760003560e01c8063715018a61161014f578063c6a6035a116100c1578063e30c39781161007a578063e30c397814610935578063e985e9c514610960578063f0306ea41461099d578063f2fde38b146109b4578063f349b173146109dd578063f4a0a52814610a1a57610272565b8063c6a6035a14610813578063c87b56dd1461082a578063d547cfb714610867578063dd62ed3e14610892578063e0df5b6f146108cf578063e2d6f33a146108f857610272565b806395d89b411161011357806395d89b41146106f15780639b19251a1461071c578063a22cb46514610759578063a4f4f8af14610782578063a9059cbb146107ad578063b88d4fde146107ea57610272565b8063715018a61461065657806379ba50971461066d57806380c41bff14610684578063853828b6146106af5780638da5cb5b146106c657610272565b806342842e0e116101e8578063589210d9116101ac578063589210d9146105305780635c975abb1461055b5780636352211e146105865780636817c76c146105c35780636caae832146105ee57806370a082311461061957610272565b806342842e0e1461045f5780634f02c420146104885780634f91e48c146104b3578063504334c2146104de57806353d6fd591461050757610272565b8063207add911161023a578063207add911461037257806323b872dd1461039b5780632db11544146103c4578063313ce567146103e0578063339493481461040b57806333d9d5fd1461043457610272565b806306fdde0314610277578063081812fc146102a2578063095ea7b3146102df57806318160ddd1461031c5780631e70b6df14610347575b600080fd5b34801561028357600080fd5b5061028c610a43565b604051610299919061329f565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c4919061330b565b610ad1565b6040516102d69190613379565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906133c0565b610b04565b604051610313919061341b565b60405180910390f35b34801561032857600080fd5b50610331610dfd565b60405161033e9190613445565b60405180910390f35b34801561035357600080fd5b5061035c610e21565b604051610369919061341b565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613460565b610e34565b005b3480156103a757600080fd5b506103c260048036038101906103bd91906134a0565b610e4e565b005b6103de60048036038101906103d9919061330b565b611684565b005b3480156103ec57600080fd5b506103f561183e565b604051610402919061350f565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190613556565b611862565b005b34801561044057600080fd5b50610449611887565b604051610456919061341b565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906134a0565b61189a565b005b34801561049457600080fd5b5061049d6119cd565b6040516104aa9190613445565b60405180910390f35b3480156104bf57600080fd5b506104c86119d3565b6040516104d59190613445565b60405180910390f35b3480156104ea57600080fd5b50610505600480360381019061050091906136b8565b6119d9565b005b34801561051357600080fd5b5061052e60048036038101906105299190613730565b6119ef565b005b34801561053c57600080fd5b50610545611a52565b6040516105529190613445565b60405180910390f35b34801561056757600080fd5b50610570611a58565b60405161057d919061341b565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a8919061330b565b611a6f565b6040516105ba9190613379565b60405180910390f35b3480156105cf57600080fd5b506105d8611b12565b6040516105e59190613445565b60405180910390f35b3480156105fa57600080fd5b50610603611b18565b6040516106109190613445565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613770565b611b1e565b60405161064d9190613445565b60405180910390f35b34801561066257600080fd5b5061066b611b36565b005b34801561067957600080fd5b50610682611b4a565b005b34801561069057600080fd5b50610699611bd9565b6040516106a69190613445565b60405180910390f35b3480156106bb57600080fd5b506106c4611bdf565b005b3480156106d257600080fd5b506106db611c96565b6040516106e89190613379565b60405180910390f35b3480156106fd57600080fd5b50610706611cbf565b604051610713919061329f565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613770565b611d4d565b604051610750919061341b565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190613730565b611d6d565b005b34801561078e57600080fd5b50610797611e6a565b6040516107a49190613445565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf91906133c0565b611e70565b6040516107e1919061341b565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c91906137fd565b611e85565b005b34801561081f57600080fd5b50610828611fbe565b005b34801561083657600080fd5b50610851600480360381019061084c919061330b565b611fe3565b60405161085e919061329f565b60405180910390f35b34801561087357600080fd5b5061087c612043565b604051610889919061329f565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190613885565b6120d1565b6040516108c69190613445565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906138c5565b6120f6565b005b34801561090457600080fd5b5061091f600480360381019061091a9190613770565b612111565b60405161092c9190613445565b60405180910390f35b34801561094157600080fd5b5061094a612129565b6040516109579190613379565b60405180910390f35b34801561096c57600080fd5b5061098760048036038101906109829190613885565b612153565b604051610994919061341b565b60405180910390f35b3480156109a957600080fd5b506109b2612182565b005b3480156109c057600080fd5b506109db60048036038101906109d69190613770565b6121a7565b005b3480156109e957600080fd5b50610a0460048036038101906109ff9190613770565b612254565b604051610a119190613445565b60405180910390f35b348015610a2657600080fd5b50610a416004803603810190610a3c919061330b565b61226c565b005b60028054610a509061393d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7c9061393d565b8015610ac95780601f10610a9e57610100808354040283529160200191610ac9565b820191906000526020600020905b815481529060010190602001808311610aac57829003601f168201915b505050505081565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006004548211158015610b185750600082115b15610d0c5760006009600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c185750600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610c4f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836007600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051610cfe9190613445565b60405180910390a350610df3565b81600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610dea9190613445565b60405180910390a35b6001905092915050565b7f00000000000000000000000000000000000000000000021e19e0c9bab240000081565b601160019054906101000a900460ff1681565b610e3c612291565b81601581905550806016819055505050565b600454811161153c576009600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610eef576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f55576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156110185750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561108357506007600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156110ba576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110c2612318565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611110919061399d565b9250508190555061111f612318565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506007600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611283919061399d565b81548110611294576112936139d1565b5b9060005260206000200154905080600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600b60008581526020019081526020016000205481548110611306576113056139d1565b5b9060005260206000200181905550600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061136357611362613a00565b5b60019003818190600052602060002001600090559055600b600083815260200190815260200160002054600b600083815260200190815260200160002081905550600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556001600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611459919061399d565b600b600084815260200190815260200160002081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff166040518060600160405280602181526020016145516021913980519060200120611521612318565b60405161152e9190613445565b60405180910390a35061167f565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116715781816115f0919061399d565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b61167c84848461234c565b50505b505050565b601160009054906101000a900460ff16156116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90613a7b565b60405180910390fd5b60008111611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613ae7565b60405180910390fd5b601354816014546117289190613b07565b1115611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613b87565b60405180910390fd5b806012546117779190613ba7565b34146117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af90613c35565b60405180910390fd5b80601454016014819055506117cb612318565b8102600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060005b8181101561183a5761182d3361261c565b808060010191505061181c565b5050565b7f000000000000000000000000000000000000000000000000000000000000001281565b61186a612291565b80601160006101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b6118a5838383610e4e565b60008273ffffffffffffffffffffffffffffffffffffffff163b14158015611991575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161192c93929190613c8c565b6020604051808303816000875af115801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f9190613d2e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156119c8576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60045481565b60165481565b6119e1612291565b6119eb8282612630565b5050565b6119f7612291565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6000600d60009054906101000a900460ff16905090565b60006009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b0d576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60125481565b60175481565b60056020528060005260406000206000915090505481565b611b3e612291565b611b486000612654565b565b6000611b54612685565b90508073ffffffffffffffffffffffffffffffffffffffff16611b75612129565b73ffffffffffffffffffffffffffffffffffffffff1614611bcd57806040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611bc49190613379565b60405180910390fd5b611bd681612654565b50565b60135481565b611be7612291565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611c0d90613d89565b60006040518083038185875af1925050503d8060008114611c4a576040519150601f19603f3d011682016040523d82523d6000602084013e611c4f565b606091505b5050905080611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613dea565b60405180910390fd5b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60038054611ccc9061393d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf89061393d565b8015611d455780601f10611d1a57610100808354040283529160200191611d45565b820191906000526020600020905b815481529060010190602001808311611d2857829003601f168201915b505050505081565b600c6020528060005260406000206000915054906101000a900460ff1681565b80600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e5e919061341b565b60405180910390a35050565b60145481565b6000611e7d33848461234c565b905092915050565b611e90858585610e4e565b60008473ffffffffffffffffffffffffffffffffffffffff163b14158015611f80575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b8152600401611f1b959493929190613e37565b6020604051808303816000875af1158015611f3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f5e9190613d2e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611fb7576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b611fc6612291565b6001601160016101000a81548160ff021916908315150217905550565b60606000600e8054611ff49061393d565b905011612010576040518060200160405280600081525061203c565b600e61201b8361268d565b60405160200161202c929190613f59565b6040516020818303038152906040525b9050919050565b600e80546120509061393d565b80601f016020809104026020016040519081016040528092919081815260200182805461207c9061393d565b80156120c95780601f1061209e576101008083540402835291602001916120c9565b820191906000526020600020905b8154815290600101906020018083116120ac57829003601f168201915b505050505081565b6006602052816000526040600020602052806000526040600020600091509150505481565b6120fe612291565b80600e908161210d9190614114565b5050565b600f6020528060005260406000206000915090505481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61218a612291565b6000601160016101000a81548160ff021916908315150217905550565b6121af612291565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1661220f611c96565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60106020528060005260406000206000915090505481565b612274612291565b670de0b6b3a7640000816122889190613ba7565b60128190555050565b612299612685565b73ffffffffffffffffffffffffffffffffffffffff166122b7611c96565b73ffffffffffffffffffffffffffffffffffffffff1614612316576122da612685565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161230d9190613379565b60405180910390fd5b565b60007f0000000000000000000000000000000000000000000000000000000000000012600a6123479190614319565b905090565b600061235661275b565b601160019054906101000a900460ff16156123b05760175482106123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a6906143b0565b60405180910390fd5b5b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124dc5781601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124509190613b07565b92505081905550601654601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d29061441c565b60405180910390fd5b5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126085781600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461257c9190613b07565b92505081905550601554600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fe90614488565b60405180910390fd5b5b61261384848461279c565b90509392505050565b61262461275b565b61262d81612b06565b50565b816002908161263f9190614114565b50806003908161264f9190614114565b505050565b600160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561268281612d9c565b50565b600033905090565b60606000600161269c84612e60565b01905060008167ffffffffffffffff8111156126bb576126ba61358d565b5b6040519080825280601f01601f1916602001820160405280156126ed5781602001600182028036833780820191505090505b509050600082602001820190505b600115612750578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612744576127436144a8565b5b049450600085036126fb575b819350505050919050565b612763611a58565b1561279a576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000806127a7612318565b90506000600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612880919061399d565b9250508190555084600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129b457600083600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297291906144d7565b848461297e91906144d7565b612988919061399d565b905060005b818110156129b15761299e89612fb3565b80806129a990614508565b91505061298d565b50505b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a945760008382612a1391906144d7565b84600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a5e91906144d7565b612a68919061399d565b905060005b81811015612a9157612a7e8861261c565b8080612a8990614508565b915050612a6d565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16604051806060016040528060218152602001614551602191398051906020012087604051612af09190613445565b60405180910390a3600193505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b6c576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60046000815480929190600101919050555060006004549050600073ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c1e576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150556001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612d25919061399d565b600b600083815260200190815260200160002081905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612ebe577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612eb457612eb36144a8565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612efb576d04ee2d6d415b85acef81000000008381612ef157612ef06144a8565b5b0492506020810190505b662386f26fc100008310612f2a57662386f26fc100008381612f2057612f1f6144a8565b5b0492506010810190505b6305f5e1008310612f53576305f5e1008381612f4957612f486144a8565b5b0492506008810190505b6127108310612f78576127108381612f6e57612f6d6144a8565b5b0492506004810190505b60648310612f9b5760648381612f9157612f906144a8565b5b0492506002810190505b600a8310612faa576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613019576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506130a9919061399d565b815481106130ba576130b96139d1565b5b90600052602060002001549050600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061311657613115613a00565b5b60019003818190600052602060002001600090559055600b6000828152602001908152602001600020600090556009600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556007600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905580600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561324957808201518184015260208101905061322e565b60008484015250505050565b6000601f19601f8301169050919050565b60006132718261320f565b61327b818561321a565b935061328b81856020860161322b565b61329481613255565b840191505092915050565b600060208201905081810360008301526132b98184613266565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6132e8816132d5565b81146132f357600080fd5b50565b600081359050613305816132df565b92915050565b600060208284031215613321576133206132cb565b5b600061332f848285016132f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061336382613338565b9050919050565b61337381613358565b82525050565b600060208201905061338e600083018461336a565b92915050565b61339d81613358565b81146133a857600080fd5b50565b6000813590506133ba81613394565b92915050565b600080604083850312156133d7576133d66132cb565b5b60006133e5858286016133ab565b92505060206133f6858286016132f6565b9150509250929050565b60008115159050919050565b61341581613400565b82525050565b6000602082019050613430600083018461340c565b92915050565b61343f816132d5565b82525050565b600060208201905061345a6000830184613436565b92915050565b60008060408385031215613477576134766132cb565b5b6000613485858286016132f6565b9250506020613496858286016132f6565b9150509250929050565b6000806000606084860312156134b9576134b86132cb565b5b60006134c7868287016133ab565b93505060206134d8868287016133ab565b92505060406134e9868287016132f6565b9150509250925092565b600060ff82169050919050565b613509816134f3565b82525050565b60006020820190506135246000830184613500565b92915050565b61353381613400565b811461353e57600080fd5b50565b6000813590506135508161352a565b92915050565b60006020828403121561356c5761356b6132cb565b5b600061357a84828501613541565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135c582613255565b810181811067ffffffffffffffff821117156135e4576135e361358d565b5b80604052505050565b60006135f76132c1565b905061360382826135bc565b919050565b600067ffffffffffffffff8211156136235761362261358d565b5b61362c82613255565b9050602081019050919050565b82818337600083830152505050565b600061365b61365684613608565b6135ed565b90508281526020810184848401111561367757613676613588565b5b613682848285613639565b509392505050565b600082601f83011261369f5761369e613583565b5b81356136af848260208601613648565b91505092915050565b600080604083850312156136cf576136ce6132cb565b5b600083013567ffffffffffffffff8111156136ed576136ec6132d0565b5b6136f98582860161368a565b925050602083013567ffffffffffffffff81111561371a576137196132d0565b5b6137268582860161368a565b9150509250929050565b60008060408385031215613747576137466132cb565b5b6000613755858286016133ab565b925050602061376685828601613541565b9150509250929050565b600060208284031215613786576137856132cb565b5b6000613794848285016133ab565b91505092915050565b600080fd5b600080fd5b60008083601f8401126137bd576137bc613583565b5b8235905067ffffffffffffffff8111156137da576137d961379d565b5b6020830191508360018202830111156137f6576137f56137a2565b5b9250929050565b600080600080600060808688031215613819576138186132cb565b5b6000613827888289016133ab565b9550506020613838888289016133ab565b9450506040613849888289016132f6565b935050606086013567ffffffffffffffff81111561386a576138696132d0565b5b613876888289016137a7565b92509250509295509295909350565b6000806040838503121561389c5761389b6132cb565b5b60006138aa858286016133ab565b92505060206138bb858286016133ab565b9150509250929050565b6000602082840312156138db576138da6132cb565b5b600082013567ffffffffffffffff8111156138f9576138f86132d0565b5b6139058482850161368a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061395557607f821691505b6020821081036139685761396761390e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139a8826132d5565b91506139b3836132d5565b92508282039050818111156139cb576139ca61396e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b6000613a6560158361321a565b9150613a7082613a2f565b602082019050919050565b60006020820190508181036000830152613a9481613a58565b9050919050565b7f416d6f756e7420746f206d696e74206973203000000000000000000000000000600082015250565b6000613ad160138361321a565b9150613adc82613a9b565b602082019050919050565b60006020820190508181036000830152613b0081613ac4565b9050919050565b6000613b12826132d5565b9150613b1d836132d5565b9250828201905080821115613b3557613b3461396e565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000613b7160098361321a565b9150613b7c82613b3b565b602082019050919050565b60006020820190508181036000830152613ba081613b64565b9050919050565b6000613bb2826132d5565b9150613bbd836132d5565b9250828202613bcb816132d5565b91508282048414831517613be257613be161396e565b5b5092915050565b7f4d7573742070726f766964652065786163742072657175697265642045544800600082015250565b6000613c1f601f8361321a565b9150613c2a82613be9565b602082019050919050565b60006020820190508181036000830152613c4e81613c12565b9050919050565b600082825260208201905092915050565b50565b6000613c76600083613c55565b9150613c8182613c66565b600082019050919050565b6000608082019050613ca1600083018661336a565b613cae602083018561336a565b613cbb6040830184613436565b8181036060830152613ccc81613c69565b9050949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d0b81613cd6565b8114613d1657600080fd5b50565b600081519050613d2881613d02565b92915050565b600060208284031215613d4457613d436132cb565b5b6000613d5284828501613d19565b91505092915050565b600081905092915050565b6000613d73600083613d5b565b9150613d7e82613c66565b600082019050919050565b6000613d9482613d66565b9150819050919050565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b6000613dd460148361321a565b9150613ddf82613d9e565b602082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b6000613e168385613c55565b9350613e23838584613639565b613e2c83613255565b840190509392505050565b6000608082019050613e4c600083018861336a565b613e59602083018761336a565b613e666040830186613436565b8181036060830152613e79818486613e0a565b90509695505050505050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613eb28161393d565b613ebc8186613e85565b94506001821660008114613ed75760018114613eec57613f1f565b60ff1983168652811515820286019350613f1f565b613ef585613e90565b60005b83811015613f1757815481890152600182019150602081019050613ef8565b838801955050505b50505092915050565b6000613f338261320f565b613f3d8185613e85565b9350613f4d81856020860161322b565b80840191505092915050565b6000613f658285613ea5565b9150613f718284613f28565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f8d565b613fd48683613f8d565b95508019841693508086168417925050509392505050565b6000819050919050565b600061401161400c614007846132d5565b613fec565b6132d5565b9050919050565b6000819050919050565b61402b83613ff6565b61403f61403782614018565b848454613f9a565b825550505050565b600090565b614054614047565b61405f818484614022565b505050565b5b818110156140835761407860008261404c565b600181019050614065565b5050565b601f8211156140c85761409981613e90565b6140a284613f7d565b810160208510156140b1578190505b6140c56140bd85613f7d565b830182614064565b50505b505050565b600082821c905092915050565b60006140eb600019846008026140cd565b1980831691505092915050565b600061410483836140da565b9150826002028217905092915050565b61411d8261320f565b67ffffffffffffffff8111156141365761413561358d565b5b614140825461393d565b61414b828285614087565b600060209050601f83116001811461417e576000841561416c578287015190505b61417685826140f8565b8655506141de565b601f19841661418c86613e90565b60005b828110156141b45784890151825560018201915060208501945060208101905061418f565b868310156141d157848901516141cd601f8916826140da565b8355505b6001600288020188555050505b505050505050565b60008160011c9050919050565b6000808291508390505b600185111561423d578086048111156142195761421861396e565b5b60018516156142285780820291505b8081029050614236856141e6565b94506141fd565b94509492505050565b6000826142565760019050614312565b816142645760009050614312565b816001811461427a5760028114614284576142b3565b6001915050614312565b60ff8411156142965761429561396e565b5b8360020a9150848211156142ad576142ac61396e565b5b50614312565b5060208310610133831016604e8410600b84101617156142e85782820a9050838111156142e3576142e261396e565b5b614312565b6142f584848460016141f3565b9250905081840481111561430c5761430b61396e565b5b81810290505b9392505050565b6000614324826132d5565b915061432f836134f3565b925061435c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614246565b905092915050565b7f657863656564207478206c696d69740000000000000000000000000000000000600082015250565b600061439a600f8361321a565b91506143a582614364565b602082019050919050565b600060208201905081810360008301526143c98161438d565b9050919050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c0000000000600082015250565b6000614406601b8361321a565b9150614411826143d0565b602082019050919050565b60006020820190508181036000830152614435816143f9565b9050919050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f20627579000000000000600082015250565b6000614472601a8361321a565b915061447d8261443c565b602082019050919050565b600060208201905081810360008301526144a181614465565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144e2826132d5565b91506144ed836132d5565b9250826144fd576144fc6144a8565b5b828204905092915050565b6000614513826132d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145455761454461396e565b5b60018201905091905056fe5472616e7366657228616464726573732c616464726573732c75696e7432353629a2646970667358221220caf90702c96b4eb20df1fd11c3a3c1466ca6c4ab2d82393d02952d80f383de3064736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b314dc5e86fae86dbdef13b723c1db42c45adab00000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000005f5e100
-----Decoded View---------------
Arg [0] : _owner (address): 0xb314dc5E86FAe86Dbdef13b723c1DB42c45AdAB0
Arg [1] : _totalSupply (uint256): 10000
Arg [2] : _publicMintSize (uint256): 5000
Arg [3] : _decimal (uint8): 18
Arg [4] : _buylimit (uint256): 100000000
Arg [5] : _selllimit (uint256): 100000000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000b314dc5e86fae86dbdef13b723c1db42c45adab0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [5] : 0000000000000000000000000000000000000000000000000000000005f5e100
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.