Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 530 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 39336886 | 45 days ago | IN | 0 ETH | 0.0000001 | ||||
| Set Approval For... | 36812355 | 103 days ago | IN | 0 ETH | 0.00000023 | ||||
| Set Approval For... | 31283220 | 231 days ago | IN | 0 ETH | 0.00000016 | ||||
| Set Approval For... | 30346321 | 253 days ago | IN | 0 ETH | 0.0000001 | ||||
| Set Approval For... | 29572725 | 271 days ago | IN | 0 ETH | 0.00000148 | ||||
| Set Approval For... | 29105815 | 282 days ago | IN | 0 ETH | 0.00000035 | ||||
| Set Approval For... | 27979728 | 308 days ago | IN | 0 ETH | 0.00000013 | ||||
| Set Approval For... | 27594706 | 317 days ago | IN | 0 ETH | 0.00000093 | ||||
| Set Approval For... | 27027731 | 330 days ago | IN | 0 ETH | 0.00000047 | ||||
| Free Mint | 26980309 | 331 days ago | IN | 0 ETH | 0.00000111 | ||||
| Free Mint | 26943167 | 332 days ago | IN | 0 ETH | 0.00000062 | ||||
| Set Approval For... | 26865785 | 334 days ago | IN | 0 ETH | 0.00002337 | ||||
| Free Mint | 26848091 | 334 days ago | IN | 0 ETH | 0.00000182 | ||||
| Free Mint | 26841537 | 334 days ago | IN | 0 ETH | 0.00000436 | ||||
| Free Mint | 26789197 | 336 days ago | IN | 0 ETH | 0.00000047 | ||||
| Set Approval For... | 26769604 | 336 days ago | IN | 0 ETH | 0.00000021 | ||||
| Free Mint | 26698430 | 338 days ago | IN | 0 ETH | 0.00000288 | ||||
| Free Mint | 26622994 | 339 days ago | IN | 0 ETH | 0.0000024 | ||||
| Free Mint | 26597495 | 340 days ago | IN | 0 ETH | 0.000001 | ||||
| Free Mint | 26406528 | 344 days ago | IN | 0 ETH | 0.00000065 | ||||
| Free Mint | 26358726 | 345 days ago | IN | 0 ETH | 0.00000086 | ||||
| Free Mint | 26270117 | 348 days ago | IN | 0 ETH | 0.00000093 | ||||
| Free Mint | 26203920 | 349 days ago | IN | 0 ETH | 0.00000423 | ||||
| Free Mint | 26073080 | 352 days ago | IN | 0 ETH | 0.00000138 | ||||
| Safe Transfer Fr... | 25823183 | 358 days ago | IN | 0 ETH | 0.00000065 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RandomBAYCpackBASE
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/**
*Submitted for verification at basescan.org on 2023-08-20
*/
// SPDX-License-Identifier: MIT
/**
██████╗ █████╗ ██╗ ██╗ ██████╗ ██████╗ █████╗ ██████╗██╗ ██╗
██╔══██╗██╔══██╗╚██╗ ██╔╝██╔════╝ ██╔══██╗██╔══██╗██╔════╝██║ ██╔╝
██████╔╝███████║ ╚████╔╝ ██║ ██████╔╝███████║██║ █████╔╝
██╔══██╗██╔══██║ ╚██╔╝ ██║ ██╔═══╝ ██╔══██║██║ ██╔═██╗
██████╔╝██║ ██║ ██║ ╚██████╗ ██║ ██║ ██║╚██████╗██║ ██╗
╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
*/
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}
// File: @openzeppelin/contracts/utils/math/SignedMath.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
}
}
// File: @openzeppelin/contracts/utils/math/Math.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @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 up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (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; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
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.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 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.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
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 (rounding == Rounding.Up && 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 down.
*
* 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* 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 + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* 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 + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(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) {
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] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
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 keccak256(bytes(a)) == keccak256(bytes(b));
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 tokenId) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += amount;
}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual override {
super._beforeTokenTransfer(from, to, firstTokenId, batchSize);
if (batchSize > 1) {
// Will only trigger during construction. Batch transferring (minting) is not available afterwards.
revert("ERC721Enumerable: consecutive transfers not supported");
}
uint256 tokenId = firstTokenId;
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. 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 {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: contracts/baseBAYCpack.sol
pragma solidity ^0.8.18;
/**
██████╗ █████╗ ██╗ ██╗ ██████╗ ██████╗ █████╗ ██████╗██╗ ██╗
██╔══██╗██╔══██╗╚██╗ ██╔╝██╔════╝ ██╔══██╗██╔══██╗██╔════╝██║ ██╔╝
██████╔╝███████║ ╚████╔╝ ██║ ██████╔╝███████║██║ █████╔╝
██╔══██╗██╔══██║ ╚██╔╝ ██║ ██╔═══╝ ██╔══██║██║ ██╔═██╗
██████╔╝██║ ██║ ██║ ╚██████╗ ██║ ██║ ██║╚██████╗██║ ██╗
╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
*/
contract RandomBAYCpackBASE is ERC721Enumerable, Ownable, ReentrancyGuard {
using Strings for uint256;
string private hiddenMetadataUri;
uint256 public salePrice = 0.00006 ether;
uint256 public maxSupply = 33333;
uint256 private nextTokenId = 1;
address private contractOwner;
bool public paused = false;
mapping(address => bool) public hasClaimedFreeMint;
constructor(
) ERC721("Random BAYC pack", "BABAYCP") {
contractOwner = msg.sender;
}
function mint(uint256 _quantity) external payable nonReentrant {
uint256 supply = totalSupply();
require(!paused, "Minting is paused!");
require(_quantity > 0, "Minimum 1 NFT");
require(_quantity + supply <= maxSupply, "Sold out or try a smaller quantity");
uint256 contractOwnerFee = _quantity * salePrice;
if (balanceOf(msg.sender) > 0) {
require(msg.value >= _quantity * salePrice, "Insufficient payment for the requested quantity.");
for (uint256 i = 0; i < _quantity; i++) {
_safeMint(msg.sender, nextTokenId);
nextTokenId++;
}
} else {
require(!hasClaimedFreeMint[msg.sender], "You have already claimed your free mint.");
hasClaimedFreeMint[msg.sender] = true;
for (uint256 i = 0; i < _quantity; i++) {
_safeMint(msg.sender, nextTokenId);
nextTokenId++;
}
}
(bool success, ) = payable(contractOwner).call{value: contractOwnerFee}("");
require(success, "Payment to the contract owner failed.");
}
function freeMint() external nonReentrant {
require(!hasClaimedFreeMint[msg.sender], "You have already claimed your free mint.");
hasClaimedFreeMint[msg.sender] = true;
_safeMint(msg.sender, nextTokenId);
nextTokenId++;
}
function airdrop(address _to, uint256 _quantity) external onlyOwner {
uint256 supply = totalSupply();
require(!paused, "Airdrop is paused!");
require(
_quantity + supply <= maxSupply,
"Sold out or try less quantity."
);
for (uint256 i = 0; i < _quantity; i++) {
_safeMint(_to, nextTokenId);
nextTokenId++;
}
}
function setPaused(bool _state) external onlyOwner {
paused = _state;
}
function setSalePrice(uint256 _newPrice) external onlyOwner {
salePrice = _newPrice;
}
function setMaxSupply(uint256 _maxSupply) external onlyOwner {
maxSupply = _maxSupply;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
hiddenMetadataUri = _newBaseURI;
}
function walletOfOwner(address _owner) external view returns (uint256[] memory) {
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
uint256 currentTokenId = 1;
uint256 ownedTokenIndex = 0;
while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
address currentTokenOwner = ownerOf(currentTokenId);
if (currentTokenOwner == _owner) {
ownedTokenIds[ownedTokenIndex] = currentTokenId;
ownedTokenIndex++;
}
currentTokenId++;
}
return ownedTokenIds;
}
function _baseURI() internal view virtual override returns (string memory) {
return hiddenMetadataUri;
}
function _burn(uint256 tokenId) internal virtual override(ERC721) {
super._burn(tokenId);
}
function getTotalSupply() external view returns (uint256) {
return totalSupply();
}
function withdraw() external onlyOwner {
(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
require(success, "Withdraw failed.");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimedFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","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":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052653691d6afc000600d55618235600e556001600f556000601060146101000a81548160ff0219169083151502179055503480156200004157600080fd5b506040518060400160405280601081526020017f52616e646f6d2042415943207061636b000000000000000000000000000000008152506040518060400160405280600781526020017f42414241594350000000000000000000000000000000000000000000000000008152508160009081620000bf91906200048b565b508060019081620000d191906200048b565b505050620000f4620000e86200014360201b60201c565b6200014b60201b60201c565b6001600b8190555033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000572565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029357607f821691505b602082108103620002a957620002a86200024b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002d4565b6200031f8683620002d4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200036c62000366620003608462000337565b62000341565b62000337565b9050919050565b6000819050919050565b62000388836200034b565b620003a0620003978262000373565b848454620002e1565b825550505050565b600090565b620003b7620003a8565b620003c48184846200037d565b505050565b5b81811015620003ec57620003e0600082620003ad565b600181019050620003ca565b5050565b601f8211156200043b576200040581620002af565b6200041084620002c4565b8101602085101562000420578190505b620004386200042f85620002c4565b830182620003c9565b50505b505050565b600082821c905092915050565b6000620004606000198460080262000440565b1980831691505092915050565b60006200047b83836200044d565b9150826002028217905092915050565b620004968262000211565b67ffffffffffffffff811115620004b257620004b16200021c565b5b620004be82546200027a565b620004cb828285620003f0565b600060209050601f831160018114620005035760008415620004ee578287015190505b620004fa85826200046d565b8655506200056a565b601f1984166200051386620002af565b60005b828110156200053d5784890151825560018201915060208501945060208101905062000516565b868310156200055d578489015162000559601f8916826200044d565b8355505b6001600288020188555050505b505050505050565b61487c80620005826000396000f3fe6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106d8578063d5abeb0114610715578063e985e9c514610740578063f2fde38b1461077d578063f51f96dd146107a6576101ee565b8063a0712d681461063f578063a22cb4651461065b578063b88d4fde14610684578063c4e41b22146106ad576101ee565b8063715018a6116100dc578063715018a6146105a95780638ba4cc3c146105c05780638da5cb5b146105e957806395d89b4114610614576101ee565b80635c975abb146104db5780636352211e146105065780636f8b44b01461054357806370a082311461056c576101ee565b80632f745c5911610185578063438b630011610154578063438b6300146104215780634f6ccce71461045e57806355f804b31461049b5780635b70ea9f146104c4576101ee565b80632f745c59146103675780633ccfd60b146103a457806342842e0e146103bb578063428640d8146103e4576101ee565b806316c38b3c116101c157806316c38b3c146102c157806318160ddd146102ea5780631919fed71461031557806323b872dd1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612dba565b6107d1565b6040516102279190612e02565b60405180910390f35b34801561023c57600080fd5b5061024561084b565b6040516102529190612ead565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f05565b6108dd565b60405161028f9190612f73565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612fba565b610923565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190613026565b610a3a565b005b3480156102f657600080fd5b506102ff610a5f565b60405161030c9190613062565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612f05565b610a6c565b005b34801561034a57600080fd5b506103656004803603810190610360919061307d565b610a7e565b005b34801561037357600080fd5b5061038e60048036038101906103899190612fba565b610ade565b60405161039b9190613062565b60405180910390f35b3480156103b057600080fd5b506103b9610b83565b005b3480156103c757600080fd5b506103e260048036038101906103dd919061307d565b610c3a565b005b3480156103f057600080fd5b5061040b600480360381019061040691906130d0565b610c5a565b6040516104189190612e02565b60405180910390f35b34801561042d57600080fd5b50610448600480360381019061044391906130d0565b610c7a565b60405161045591906131bb565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612f05565b610d84565b6040516104929190613062565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613312565b610df5565b005b3480156104d057600080fd5b506104d9610e10565b005b3480156104e757600080fd5b506104f0610f2b565b6040516104fd9190612e02565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612f05565b610f3e565b60405161053a9190612f73565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612f05565b610fc4565b005b34801561057857600080fd5b50610593600480360381019061058e91906130d0565b610fd6565b6040516105a09190613062565b60405180910390f35b3480156105b557600080fd5b506105be61108d565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612fba565b6110a1565b005b3480156105f557600080fd5b506105fe61119d565b60405161060b9190612f73565b60405180910390f35b34801561062057600080fd5b506106296111c7565b6040516106369190612ead565b60405180910390f35b61065960048036038101906106549190612f05565b611259565b005b34801561066757600080fd5b50610682600480360381019061067d919061335b565b611610565b005b34801561069057600080fd5b506106ab60048036038101906106a6919061343c565b611626565b005b3480156106b957600080fd5b506106c2611688565b6040516106cf9190613062565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612f05565b611697565b60405161070c9190612ead565b60405180910390f35b34801561072157600080fd5b5061072a6116ff565b6040516107379190613062565b60405180910390f35b34801561074c57600080fd5b50610767600480360381019061076291906134bf565b611705565b6040516107749190612e02565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f91906130d0565b611799565b005b3480156107b257600080fd5b506107bb61181c565b6040516107c89190613062565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610844575061084382611822565b5b9050919050565b60606000805461085a9061352e565b80601f01602080910402602001604051908101604052809291908181526020018280546108869061352e565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e882611904565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092e82610f3e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610995906135d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bd61194f565b73ffffffffffffffffffffffffffffffffffffffff1614806109ec57506109eb816109e661194f565b611705565b5b610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290613663565b60405180910390fd5b610a358383611957565b505050565b610a42611a10565b80601060146101000a81548160ff02191690831515021790555050565b6000600880549050905090565b610a74611a10565b80600d8190555050565b610a8f610a8961194f565b82611a8e565b610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac5906136f5565b60405180910390fd5b610ad9838383611b23565b505050565b6000610ae983610fd6565b8210610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190613787565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b8b611a10565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610bb1906137d8565b60006040518083038185875af1925050503d8060008114610bee576040519150601f19603f3d011682016040523d82523d6000602084013e610bf3565b606091505b5050905080610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613839565b60405180910390fd5b50565b610c5583838360405180602001604052806000815250611626565b505050565b60116020528060005260406000206000915054906101000a900460ff1681565b60606000610c8783610fd6565b905060008167ffffffffffffffff811115610ca557610ca46131e7565b5b604051908082528060200260200182016040528015610cd35781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf05750600e548211155b15610d78576000610d0083610f3e565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d645782848381518110610d4957610d48613859565b5b6020026020010181815250508180610d60906138b7565b9250505b8280610d6f906138b7565b93505050610cdf565b82945050505050919050565b6000610d8e610a5f565b8210610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690613971565b60405180910390fd5b60088281548110610de357610de2613859565b5b90600052602060002001549050919050565b610dfd611a10565b80600c9081610e0c9190613b3d565b5050565b610e18611e1c565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90613c81565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f0933600f54611e6b565b600f6000815480929190610f1c906138b7565b9190505550610f29611e89565b565b601060149054906101000a900460ff1681565b600080610f4a83611e93565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613ced565b60405180910390fd5b80915050919050565b610fcc611a10565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613d7f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611095611a10565b61109f6000611ed0565b565b6110a9611a10565b60006110b3610a5f565b9050601060149054906101000a900460ff1615611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90613deb565b60405180910390fd5b600e5481836111149190613e0b565b1115611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90613e8b565b60405180910390fd5b60005b828110156111975761116c84600f54611e6b565b600f600081548092919061117f906138b7565b9190505550808061118f906138b7565b915050611158565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111d69061352e565b80601f01602080910402602001604051908101604052809291908181526020018280546112029061352e565b801561124f5780601f106112245761010080835404028352916020019161124f565b820191906000526020600020905b81548152906001019060200180831161123257829003601f168201915b5050505050905090565b611261611e1c565b600061126b610a5f565b9050601060149054906101000a900460ff16156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490613ef7565b60405180910390fd5b60008211611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613f63565b60405180910390fd5b600e54818361130f9190613e0b565b1115611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613ff5565b60405180910390fd5b6000600d54836113609190614015565b9050600061136d33610fd6565b111561140b57600d54836113819190614015565b3410156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906140c9565b60405180910390fd5b60005b83811015611405576113da33600f54611e6b565b600f60008154809291906113ed906138b7565b919050555080806113fd906138b7565b9150506113c6565b50611534565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90613c81565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b838110156115325761150733600f54611e6b565b600f600081548092919061151a906138b7565b9190505550808061152a906138b7565b9150506114f3565b505b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161157c906137d8565b60006040518083038185875af1925050503d80600081146115b9576040519150601f19603f3d011682016040523d82523d6000602084013e6115be565b606091505b5050905080611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f99061415b565b60405180910390fd5b50505061160d611e89565b50565b61162261161b61194f565b8383611f96565b5050565b61163761163161194f565b83611a8e565b611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d906136f5565b60405180910390fd5b61168284848484612102565b50505050565b6000611692610a5f565b905090565b60606116a282611904565b60006116ac61215e565b905060008151116116cc57604051806020016040528060008152506116f7565b806116d6846121f0565b6040516020016116e79291906141b7565b6040516020818303038152906040525b915050919050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117a1611a10565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118079061424d565b60405180910390fd5b61181981611ed0565b50565b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118ed57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118fd57506118fc826122be565b5b9050919050565b61190d81612328565b61194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613ced565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119ca83610f3e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a1861194f565b73ffffffffffffffffffffffffffffffffffffffff16611a3661119d565b73ffffffffffffffffffffffffffffffffffffffff1614611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a83906142b9565b60405180910390fd5b565b600080611a9a83610f3e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611adc5750611adb8185611705565b5b80611b1a57508373ffffffffffffffffffffffffffffffffffffffff16611b02846108dd565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4382610f3e565b73ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b909061434b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff906143dd565b60405180910390fd5b611c158383836001612369565b8273ffffffffffffffffffffffffffffffffffffffff16611c3582610f3e565b73ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c829061434b565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1783838360016124c7565b505050565b6002600b5403611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614449565b60405180910390fd5b6002600b81905550565b611e858282604051806020016040528060008152506124cd565b5050565b6001600b81905550565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb906144b5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120f59190612e02565b60405180910390a3505050565b61210d848484611b23565b61211984848484612528565b612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614547565b60405180910390fd5b50505050565b6060600c805461216d9061352e565b80601f01602080910402602001604051908101604052809291908181526020018280546121999061352e565b80156121e65780601f106121bb576101008083540402835291602001916121e6565b820191906000526020600020905b8154815290600101906020018083116121c957829003601f168201915b5050505050905090565b6060600060016121ff846126af565b01905060008167ffffffffffffffff81111561221e5761221d6131e7565b5b6040519080825280601f01601f1916602001820160405280156122505781602001600182028036833780820191505090505b509050600082602001820190505b6001156122b3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122a7576122a6614567565b5b0494506000850361225e575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661234a83611e93565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61237584848484612802565b60018111156123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090614608565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612400576123fb81612808565b61243f565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461243e5761243d8582612851565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124815761247c816129be565b6124c0565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146124bf576124be8482612a8f565b5b5b5050505050565b50505050565b6124d78383612b0e565b6124e46000848484612528565b612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a90614547565b60405180910390fd5b505050565b60006125498473ffffffffffffffffffffffffffffffffffffffff16612d2b565b156126a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257261194f565b8786866040518563ffffffff1660e01b8152600401612594949392919061467d565b6020604051808303816000875af19250505080156125d057506040513d601f19601f820116820180604052508101906125cd91906146de565b60015b612652573d8060008114612600576040519150601f19603f3d011682016040523d82523d6000602084013e612605565b606091505b50600081510361264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614547565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126a7565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061270d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161270357612702614567565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061274a576d04ee2d6d415b85acef810000000083816127405761273f614567565b5b0492506020810190505b662386f26fc10000831061277957662386f26fc10000838161276f5761276e614567565b5b0492506010810190505b6305f5e10083106127a2576305f5e100838161279857612797614567565b5b0492506008810190505b61271083106127c75761271083816127bd576127bc614567565b5b0492506004810190505b606483106127ea57606483816127e0576127df614567565b5b0492506002810190505b600a83106127f9576001810190505b80915050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161285e84610fd6565b612868919061470b565b905060006007600084815260200190815260200160002054905081811461294d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129d2919061470b565b9050600060096000848152602001908152602001600020549050600060088381548110612a0257612a01613859565b5b906000526020600020015490508060088381548110612a2457612a23613859565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a7357612a7261473f565b5b6001900381819060005260206000200160009055905550505050565b6000612a9a83610fd6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b74906147ba565b60405180910390fd5b612b8681612328565b15612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd90614826565b60405180910390fd5b612bd4600083836001612369565b612bdd81612328565b15612c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1490614826565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d276000838360016124c7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9781612d62565b8114612da257600080fd5b50565b600081359050612db481612d8e565b92915050565b600060208284031215612dd057612dcf612d58565b5b6000612dde84828501612da5565b91505092915050565b60008115159050919050565b612dfc81612de7565b82525050565b6000602082019050612e176000830184612df3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e57578082015181840152602081019050612e3c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e7f82612e1d565b612e898185612e28565b9350612e99818560208601612e39565b612ea281612e63565b840191505092915050565b60006020820190508181036000830152612ec78184612e74565b905092915050565b6000819050919050565b612ee281612ecf565b8114612eed57600080fd5b50565b600081359050612eff81612ed9565b92915050565b600060208284031215612f1b57612f1a612d58565b5b6000612f2984828501612ef0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f5d82612f32565b9050919050565b612f6d81612f52565b82525050565b6000602082019050612f886000830184612f64565b92915050565b612f9781612f52565b8114612fa257600080fd5b50565b600081359050612fb481612f8e565b92915050565b60008060408385031215612fd157612fd0612d58565b5b6000612fdf85828601612fa5565b9250506020612ff085828601612ef0565b9150509250929050565b61300381612de7565b811461300e57600080fd5b50565b60008135905061302081612ffa565b92915050565b60006020828403121561303c5761303b612d58565b5b600061304a84828501613011565b91505092915050565b61305c81612ecf565b82525050565b60006020820190506130776000830184613053565b92915050565b60008060006060848603121561309657613095612d58565b5b60006130a486828701612fa5565b93505060206130b586828701612fa5565b92505060406130c686828701612ef0565b9150509250925092565b6000602082840312156130e6576130e5612d58565b5b60006130f484828501612fa5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61313281612ecf565b82525050565b60006131448383613129565b60208301905092915050565b6000602082019050919050565b6000613168826130fd565b6131728185613108565b935061317d83613119565b8060005b838110156131ae5781516131958882613138565b97506131a083613150565b925050600181019050613181565b5085935050505092915050565b600060208201905081810360008301526131d5818461315d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61321f82612e63565b810181811067ffffffffffffffff8211171561323e5761323d6131e7565b5b80604052505050565b6000613251612d4e565b905061325d8282613216565b919050565b600067ffffffffffffffff82111561327d5761327c6131e7565b5b61328682612e63565b9050602081019050919050565b82818337600083830152505050565b60006132b56132b084613262565b613247565b9050828152602081018484840111156132d1576132d06131e2565b5b6132dc848285613293565b509392505050565b600082601f8301126132f9576132f86131dd565b5b81356133098482602086016132a2565b91505092915050565b60006020828403121561332857613327612d58565b5b600082013567ffffffffffffffff81111561334657613345612d5d565b5b613352848285016132e4565b91505092915050565b6000806040838503121561337257613371612d58565b5b600061338085828601612fa5565b925050602061339185828601613011565b9150509250929050565b600067ffffffffffffffff8211156133b6576133b56131e7565b5b6133bf82612e63565b9050602081019050919050565b60006133df6133da8461339b565b613247565b9050828152602081018484840111156133fb576133fa6131e2565b5b613406848285613293565b509392505050565b600082601f830112613423576134226131dd565b5b81356134338482602086016133cc565b91505092915050565b6000806000806080858703121561345657613455612d58565b5b600061346487828801612fa5565b945050602061347587828801612fa5565b935050604061348687828801612ef0565b925050606085013567ffffffffffffffff8111156134a7576134a6612d5d565b5b6134b38782880161340e565b91505092959194509250565b600080604083850312156134d6576134d5612d58565b5b60006134e485828601612fa5565b92505060206134f585828601612fa5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354657607f821691505b602082108103613559576135586134ff565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135bb602183612e28565b91506135c68261355f565b604082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061364d603d83612e28565b9150613658826135f1565b604082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006136df602d83612e28565b91506136ea82613683565b604082019050919050565b6000602082019050818103600083015261370e816136d2565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613771602b83612e28565b915061377c82613715565b604082019050919050565b600060208201905081810360008301526137a081613764565b9050919050565b600081905092915050565b50565b60006137c26000836137a7565b91506137cd826137b2565b600082019050919050565b60006137e3826137b5565b9150819050919050565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b6000613823601083612e28565b915061382e826137ed565b602082019050919050565b6000602082019050818103600083015261385281613816565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138c282612ecf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138f4576138f3613888565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061395b602c83612e28565b9150613966826138ff565b604082019050919050565b6000602082019050818103600083015261398a8161394e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026139f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139b6565b6139fd86836139b6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613a3a613a35613a3084612ecf565b613a15565b612ecf565b9050919050565b6000819050919050565b613a5483613a1f565b613a68613a6082613a41565b8484546139c3565b825550505050565b600090565b613a7d613a70565b613a88818484613a4b565b505050565b5b81811015613aac57613aa1600082613a75565b600181019050613a8e565b5050565b601f821115613af157613ac281613991565b613acb846139a6565b81016020851015613ada578190505b613aee613ae6856139a6565b830182613a8d565b50505b505050565b600082821c905092915050565b6000613b1460001984600802613af6565b1980831691505092915050565b6000613b2d8383613b03565b9150826002028217905092915050565b613b4682612e1d565b67ffffffffffffffff811115613b5f57613b5e6131e7565b5b613b69825461352e565b613b74828285613ab0565b600060209050601f831160018114613ba75760008415613b95578287015190505b613b9f8582613b21565b865550613c07565b601f198416613bb586613991565b60005b82811015613bdd57848901518255600182019150602085019450602081019050613bb8565b86831015613bfa5784890151613bf6601f891682613b03565b8355505b6001600288020188555050505b505050505050565b7f596f75206861766520616c726561647920636c61696d656420796f757220667260008201527f6565206d696e742e000000000000000000000000000000000000000000000000602082015250565b6000613c6b602883612e28565b9150613c7682613c0f565b604082019050919050565b60006020820190508181036000830152613c9a81613c5e565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613cd7601883612e28565b9150613ce282613ca1565b602082019050919050565b60006020820190508181036000830152613d0681613cca565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613d69602983612e28565b9150613d7482613d0d565b604082019050919050565b60006020820190508181036000830152613d9881613d5c565b9050919050565b7f41697264726f7020697320706175736564210000000000000000000000000000600082015250565b6000613dd5601283612e28565b9150613de082613d9f565b602082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b6000613e1682612ecf565b9150613e2183612ecf565b9250828201905080821115613e3957613e38613888565b5b92915050565b7f536f6c64206f7574206f7220747279206c657373207175616e746974792e0000600082015250565b6000613e75601e83612e28565b9150613e8082613e3f565b602082019050919050565b60006020820190508181036000830152613ea481613e68565b9050919050565b7f4d696e74696e6720697320706175736564210000000000000000000000000000600082015250565b6000613ee1601283612e28565b9150613eec82613eab565b602082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4d696e696d756d2031204e465400000000000000000000000000000000000000600082015250565b6000613f4d600d83612e28565b9150613f5882613f17565b602082019050919050565b60006020820190508181036000830152613f7c81613f40565b9050919050565b7f536f6c64206f7574206f7220747279206120736d616c6c6572207175616e746960008201527f7479000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fdf602283612e28565b9150613fea82613f83565b604082019050919050565b6000602082019050818103600083015261400e81613fd2565b9050919050565b600061402082612ecf565b915061402b83612ecf565b925082820261403981612ecf565b915082820484148315176140505761404f613888565b5b5092915050565b7f496e73756666696369656e74207061796d656e7420666f72207468652072657160008201527f756573746564207175616e746974792e00000000000000000000000000000000602082015250565b60006140b3603083612e28565b91506140be82614057565b604082019050919050565b600060208201905081810360008301526140e2816140a6565b9050919050565b7f5061796d656e7420746f2074686520636f6e7472616374206f776e657220666160008201527f696c65642e000000000000000000000000000000000000000000000000000000602082015250565b6000614145602583612e28565b9150614150826140e9565b604082019050919050565b6000602082019050818103600083015261417481614138565b9050919050565b600081905092915050565b600061419182612e1d565b61419b818561417b565b93506141ab818560208601612e39565b80840191505092915050565b60006141c38285614186565b91506141cf8284614186565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614237602683612e28565b9150614242826141db565b604082019050919050565b600060208201905081810360008301526142668161422a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142a3602083612e28565b91506142ae8261426d565b602082019050919050565b600060208201905081810360008301526142d281614296565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614335602583612e28565b9150614340826142d9565b604082019050919050565b6000602082019050818103600083015261436481614328565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143c7602483612e28565b91506143d28261436b565b604082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614433601f83612e28565b915061443e826143fd565b602082019050919050565b6000602082019050818103600083015261446281614426565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061449f601983612e28565b91506144aa82614469565b602082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614531603283612e28565b915061453c826144d5565b604082019050919050565b6000602082019050818103600083015261456081614524565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006145f2603583612e28565b91506145fd82614596565b604082019050919050565b60006020820190508181036000830152614621816145e5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061464f82614628565b6146598185614633565b9350614669818560208601612e39565b61467281612e63565b840191505092915050565b60006080820190506146926000830187612f64565b61469f6020830186612f64565b6146ac6040830185613053565b81810360608301526146be8184614644565b905095945050505050565b6000815190506146d881612d8e565b92915050565b6000602082840312156146f4576146f3612d58565b5b6000614702848285016146c9565b91505092915050565b600061471682612ecf565b915061472183612ecf565b925082820390508181111561473957614738613888565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006147a4602083612e28565b91506147af8261476e565b602082019050919050565b600060208201905081810360008301526147d381614797565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614810601c83612e28565b915061481b826147da565b602082019050919050565b6000602082019050818103600083015261483f81614803565b905091905056fea2646970667358221220bc2117c22ebe8d3388784fc3e6ea74dc3151ee78f6712e3a3bb1b39037ed29c064736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106d8578063d5abeb0114610715578063e985e9c514610740578063f2fde38b1461077d578063f51f96dd146107a6576101ee565b8063a0712d681461063f578063a22cb4651461065b578063b88d4fde14610684578063c4e41b22146106ad576101ee565b8063715018a6116100dc578063715018a6146105a95780638ba4cc3c146105c05780638da5cb5b146105e957806395d89b4114610614576101ee565b80635c975abb146104db5780636352211e146105065780636f8b44b01461054357806370a082311461056c576101ee565b80632f745c5911610185578063438b630011610154578063438b6300146104215780634f6ccce71461045e57806355f804b31461049b5780635b70ea9f146104c4576101ee565b80632f745c59146103675780633ccfd60b146103a457806342842e0e146103bb578063428640d8146103e4576101ee565b806316c38b3c116101c157806316c38b3c146102c157806318160ddd146102ea5780631919fed71461031557806323b872dd1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612dba565b6107d1565b6040516102279190612e02565b60405180910390f35b34801561023c57600080fd5b5061024561084b565b6040516102529190612ead565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f05565b6108dd565b60405161028f9190612f73565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612fba565b610923565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190613026565b610a3a565b005b3480156102f657600080fd5b506102ff610a5f565b60405161030c9190613062565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612f05565b610a6c565b005b34801561034a57600080fd5b506103656004803603810190610360919061307d565b610a7e565b005b34801561037357600080fd5b5061038e60048036038101906103899190612fba565b610ade565b60405161039b9190613062565b60405180910390f35b3480156103b057600080fd5b506103b9610b83565b005b3480156103c757600080fd5b506103e260048036038101906103dd919061307d565b610c3a565b005b3480156103f057600080fd5b5061040b600480360381019061040691906130d0565b610c5a565b6040516104189190612e02565b60405180910390f35b34801561042d57600080fd5b50610448600480360381019061044391906130d0565b610c7a565b60405161045591906131bb565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612f05565b610d84565b6040516104929190613062565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613312565b610df5565b005b3480156104d057600080fd5b506104d9610e10565b005b3480156104e757600080fd5b506104f0610f2b565b6040516104fd9190612e02565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612f05565b610f3e565b60405161053a9190612f73565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612f05565b610fc4565b005b34801561057857600080fd5b50610593600480360381019061058e91906130d0565b610fd6565b6040516105a09190613062565b60405180910390f35b3480156105b557600080fd5b506105be61108d565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612fba565b6110a1565b005b3480156105f557600080fd5b506105fe61119d565b60405161060b9190612f73565b60405180910390f35b34801561062057600080fd5b506106296111c7565b6040516106369190612ead565b60405180910390f35b61065960048036038101906106549190612f05565b611259565b005b34801561066757600080fd5b50610682600480360381019061067d919061335b565b611610565b005b34801561069057600080fd5b506106ab60048036038101906106a6919061343c565b611626565b005b3480156106b957600080fd5b506106c2611688565b6040516106cf9190613062565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612f05565b611697565b60405161070c9190612ead565b60405180910390f35b34801561072157600080fd5b5061072a6116ff565b6040516107379190613062565b60405180910390f35b34801561074c57600080fd5b50610767600480360381019061076291906134bf565b611705565b6040516107749190612e02565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f91906130d0565b611799565b005b3480156107b257600080fd5b506107bb61181c565b6040516107c89190613062565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610844575061084382611822565b5b9050919050565b60606000805461085a9061352e565b80601f01602080910402602001604051908101604052809291908181526020018280546108869061352e565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e882611904565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092e82610f3e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610995906135d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bd61194f565b73ffffffffffffffffffffffffffffffffffffffff1614806109ec57506109eb816109e661194f565b611705565b5b610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290613663565b60405180910390fd5b610a358383611957565b505050565b610a42611a10565b80601060146101000a81548160ff02191690831515021790555050565b6000600880549050905090565b610a74611a10565b80600d8190555050565b610a8f610a8961194f565b82611a8e565b610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac5906136f5565b60405180910390fd5b610ad9838383611b23565b505050565b6000610ae983610fd6565b8210610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190613787565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b8b611a10565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610bb1906137d8565b60006040518083038185875af1925050503d8060008114610bee576040519150601f19603f3d011682016040523d82523d6000602084013e610bf3565b606091505b5050905080610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613839565b60405180910390fd5b50565b610c5583838360405180602001604052806000815250611626565b505050565b60116020528060005260406000206000915054906101000a900460ff1681565b60606000610c8783610fd6565b905060008167ffffffffffffffff811115610ca557610ca46131e7565b5b604051908082528060200260200182016040528015610cd35781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf05750600e548211155b15610d78576000610d0083610f3e565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d645782848381518110610d4957610d48613859565b5b6020026020010181815250508180610d60906138b7565b9250505b8280610d6f906138b7565b93505050610cdf565b82945050505050919050565b6000610d8e610a5f565b8210610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690613971565b60405180910390fd5b60088281548110610de357610de2613859565b5b90600052602060002001549050919050565b610dfd611a10565b80600c9081610e0c9190613b3d565b5050565b610e18611e1c565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90613c81565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f0933600f54611e6b565b600f6000815480929190610f1c906138b7565b9190505550610f29611e89565b565b601060149054906101000a900460ff1681565b600080610f4a83611e93565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613ced565b60405180910390fd5b80915050919050565b610fcc611a10565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613d7f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611095611a10565b61109f6000611ed0565b565b6110a9611a10565b60006110b3610a5f565b9050601060149054906101000a900460ff1615611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90613deb565b60405180910390fd5b600e5481836111149190613e0b565b1115611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90613e8b565b60405180910390fd5b60005b828110156111975761116c84600f54611e6b565b600f600081548092919061117f906138b7565b9190505550808061118f906138b7565b915050611158565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111d69061352e565b80601f01602080910402602001604051908101604052809291908181526020018280546112029061352e565b801561124f5780601f106112245761010080835404028352916020019161124f565b820191906000526020600020905b81548152906001019060200180831161123257829003601f168201915b5050505050905090565b611261611e1c565b600061126b610a5f565b9050601060149054906101000a900460ff16156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490613ef7565b60405180910390fd5b60008211611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613f63565b60405180910390fd5b600e54818361130f9190613e0b565b1115611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613ff5565b60405180910390fd5b6000600d54836113609190614015565b9050600061136d33610fd6565b111561140b57600d54836113819190614015565b3410156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906140c9565b60405180910390fd5b60005b83811015611405576113da33600f54611e6b565b600f60008154809291906113ed906138b7565b919050555080806113fd906138b7565b9150506113c6565b50611534565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90613c81565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b838110156115325761150733600f54611e6b565b600f600081548092919061151a906138b7565b9190505550808061152a906138b7565b9150506114f3565b505b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161157c906137d8565b60006040518083038185875af1925050503d80600081146115b9576040519150601f19603f3d011682016040523d82523d6000602084013e6115be565b606091505b5050905080611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f99061415b565b60405180910390fd5b50505061160d611e89565b50565b61162261161b61194f565b8383611f96565b5050565b61163761163161194f565b83611a8e565b611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d906136f5565b60405180910390fd5b61168284848484612102565b50505050565b6000611692610a5f565b905090565b60606116a282611904565b60006116ac61215e565b905060008151116116cc57604051806020016040528060008152506116f7565b806116d6846121f0565b6040516020016116e79291906141b7565b6040516020818303038152906040525b915050919050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117a1611a10565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118079061424d565b60405180910390fd5b61181981611ed0565b50565b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118ed57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118fd57506118fc826122be565b5b9050919050565b61190d81612328565b61194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613ced565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119ca83610f3e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a1861194f565b73ffffffffffffffffffffffffffffffffffffffff16611a3661119d565b73ffffffffffffffffffffffffffffffffffffffff1614611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a83906142b9565b60405180910390fd5b565b600080611a9a83610f3e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611adc5750611adb8185611705565b5b80611b1a57508373ffffffffffffffffffffffffffffffffffffffff16611b02846108dd565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4382610f3e565b73ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b909061434b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff906143dd565b60405180910390fd5b611c158383836001612369565b8273ffffffffffffffffffffffffffffffffffffffff16611c3582610f3e565b73ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c829061434b565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1783838360016124c7565b505050565b6002600b5403611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614449565b60405180910390fd5b6002600b81905550565b611e858282604051806020016040528060008152506124cd565b5050565b6001600b81905550565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb906144b5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120f59190612e02565b60405180910390a3505050565b61210d848484611b23565b61211984848484612528565b612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614547565b60405180910390fd5b50505050565b6060600c805461216d9061352e565b80601f01602080910402602001604051908101604052809291908181526020018280546121999061352e565b80156121e65780601f106121bb576101008083540402835291602001916121e6565b820191906000526020600020905b8154815290600101906020018083116121c957829003601f168201915b5050505050905090565b6060600060016121ff846126af565b01905060008167ffffffffffffffff81111561221e5761221d6131e7565b5b6040519080825280601f01601f1916602001820160405280156122505781602001600182028036833780820191505090505b509050600082602001820190505b6001156122b3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122a7576122a6614567565b5b0494506000850361225e575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661234a83611e93565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61237584848484612802565b60018111156123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090614608565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612400576123fb81612808565b61243f565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461243e5761243d8582612851565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124815761247c816129be565b6124c0565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146124bf576124be8482612a8f565b5b5b5050505050565b50505050565b6124d78383612b0e565b6124e46000848484612528565b612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a90614547565b60405180910390fd5b505050565b60006125498473ffffffffffffffffffffffffffffffffffffffff16612d2b565b156126a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257261194f565b8786866040518563ffffffff1660e01b8152600401612594949392919061467d565b6020604051808303816000875af19250505080156125d057506040513d601f19601f820116820180604052508101906125cd91906146de565b60015b612652573d8060008114612600576040519150601f19603f3d011682016040523d82523d6000602084013e612605565b606091505b50600081510361264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614547565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126a7565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061270d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161270357612702614567565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061274a576d04ee2d6d415b85acef810000000083816127405761273f614567565b5b0492506020810190505b662386f26fc10000831061277957662386f26fc10000838161276f5761276e614567565b5b0492506010810190505b6305f5e10083106127a2576305f5e100838161279857612797614567565b5b0492506008810190505b61271083106127c75761271083816127bd576127bc614567565b5b0492506004810190505b606483106127ea57606483816127e0576127df614567565b5b0492506002810190505b600a83106127f9576001810190505b80915050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161285e84610fd6565b612868919061470b565b905060006007600084815260200190815260200160002054905081811461294d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129d2919061470b565b9050600060096000848152602001908152602001600020549050600060088381548110612a0257612a01613859565b5b906000526020600020015490508060088381548110612a2457612a23613859565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a7357612a7261473f565b5b6001900381819060005260206000200160009055905550505050565b6000612a9a83610fd6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b74906147ba565b60405180910390fd5b612b8681612328565b15612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd90614826565b60405180910390fd5b612bd4600083836001612369565b612bdd81612328565b15612c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1490614826565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d276000838360016124c7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9781612d62565b8114612da257600080fd5b50565b600081359050612db481612d8e565b92915050565b600060208284031215612dd057612dcf612d58565b5b6000612dde84828501612da5565b91505092915050565b60008115159050919050565b612dfc81612de7565b82525050565b6000602082019050612e176000830184612df3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e57578082015181840152602081019050612e3c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e7f82612e1d565b612e898185612e28565b9350612e99818560208601612e39565b612ea281612e63565b840191505092915050565b60006020820190508181036000830152612ec78184612e74565b905092915050565b6000819050919050565b612ee281612ecf565b8114612eed57600080fd5b50565b600081359050612eff81612ed9565b92915050565b600060208284031215612f1b57612f1a612d58565b5b6000612f2984828501612ef0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f5d82612f32565b9050919050565b612f6d81612f52565b82525050565b6000602082019050612f886000830184612f64565b92915050565b612f9781612f52565b8114612fa257600080fd5b50565b600081359050612fb481612f8e565b92915050565b60008060408385031215612fd157612fd0612d58565b5b6000612fdf85828601612fa5565b9250506020612ff085828601612ef0565b9150509250929050565b61300381612de7565b811461300e57600080fd5b50565b60008135905061302081612ffa565b92915050565b60006020828403121561303c5761303b612d58565b5b600061304a84828501613011565b91505092915050565b61305c81612ecf565b82525050565b60006020820190506130776000830184613053565b92915050565b60008060006060848603121561309657613095612d58565b5b60006130a486828701612fa5565b93505060206130b586828701612fa5565b92505060406130c686828701612ef0565b9150509250925092565b6000602082840312156130e6576130e5612d58565b5b60006130f484828501612fa5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61313281612ecf565b82525050565b60006131448383613129565b60208301905092915050565b6000602082019050919050565b6000613168826130fd565b6131728185613108565b935061317d83613119565b8060005b838110156131ae5781516131958882613138565b97506131a083613150565b925050600181019050613181565b5085935050505092915050565b600060208201905081810360008301526131d5818461315d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61321f82612e63565b810181811067ffffffffffffffff8211171561323e5761323d6131e7565b5b80604052505050565b6000613251612d4e565b905061325d8282613216565b919050565b600067ffffffffffffffff82111561327d5761327c6131e7565b5b61328682612e63565b9050602081019050919050565b82818337600083830152505050565b60006132b56132b084613262565b613247565b9050828152602081018484840111156132d1576132d06131e2565b5b6132dc848285613293565b509392505050565b600082601f8301126132f9576132f86131dd565b5b81356133098482602086016132a2565b91505092915050565b60006020828403121561332857613327612d58565b5b600082013567ffffffffffffffff81111561334657613345612d5d565b5b613352848285016132e4565b91505092915050565b6000806040838503121561337257613371612d58565b5b600061338085828601612fa5565b925050602061339185828601613011565b9150509250929050565b600067ffffffffffffffff8211156133b6576133b56131e7565b5b6133bf82612e63565b9050602081019050919050565b60006133df6133da8461339b565b613247565b9050828152602081018484840111156133fb576133fa6131e2565b5b613406848285613293565b509392505050565b600082601f830112613423576134226131dd565b5b81356134338482602086016133cc565b91505092915050565b6000806000806080858703121561345657613455612d58565b5b600061346487828801612fa5565b945050602061347587828801612fa5565b935050604061348687828801612ef0565b925050606085013567ffffffffffffffff8111156134a7576134a6612d5d565b5b6134b38782880161340e565b91505092959194509250565b600080604083850312156134d6576134d5612d58565b5b60006134e485828601612fa5565b92505060206134f585828601612fa5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354657607f821691505b602082108103613559576135586134ff565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135bb602183612e28565b91506135c68261355f565b604082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061364d603d83612e28565b9150613658826135f1565b604082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006136df602d83612e28565b91506136ea82613683565b604082019050919050565b6000602082019050818103600083015261370e816136d2565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613771602b83612e28565b915061377c82613715565b604082019050919050565b600060208201905081810360008301526137a081613764565b9050919050565b600081905092915050565b50565b60006137c26000836137a7565b91506137cd826137b2565b600082019050919050565b60006137e3826137b5565b9150819050919050565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b6000613823601083612e28565b915061382e826137ed565b602082019050919050565b6000602082019050818103600083015261385281613816565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138c282612ecf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138f4576138f3613888565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061395b602c83612e28565b9150613966826138ff565b604082019050919050565b6000602082019050818103600083015261398a8161394e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026139f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139b6565b6139fd86836139b6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613a3a613a35613a3084612ecf565b613a15565b612ecf565b9050919050565b6000819050919050565b613a5483613a1f565b613a68613a6082613a41565b8484546139c3565b825550505050565b600090565b613a7d613a70565b613a88818484613a4b565b505050565b5b81811015613aac57613aa1600082613a75565b600181019050613a8e565b5050565b601f821115613af157613ac281613991565b613acb846139a6565b81016020851015613ada578190505b613aee613ae6856139a6565b830182613a8d565b50505b505050565b600082821c905092915050565b6000613b1460001984600802613af6565b1980831691505092915050565b6000613b2d8383613b03565b9150826002028217905092915050565b613b4682612e1d565b67ffffffffffffffff811115613b5f57613b5e6131e7565b5b613b69825461352e565b613b74828285613ab0565b600060209050601f831160018114613ba75760008415613b95578287015190505b613b9f8582613b21565b865550613c07565b601f198416613bb586613991565b60005b82811015613bdd57848901518255600182019150602085019450602081019050613bb8565b86831015613bfa5784890151613bf6601f891682613b03565b8355505b6001600288020188555050505b505050505050565b7f596f75206861766520616c726561647920636c61696d656420796f757220667260008201527f6565206d696e742e000000000000000000000000000000000000000000000000602082015250565b6000613c6b602883612e28565b9150613c7682613c0f565b604082019050919050565b60006020820190508181036000830152613c9a81613c5e565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613cd7601883612e28565b9150613ce282613ca1565b602082019050919050565b60006020820190508181036000830152613d0681613cca565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613d69602983612e28565b9150613d7482613d0d565b604082019050919050565b60006020820190508181036000830152613d9881613d5c565b9050919050565b7f41697264726f7020697320706175736564210000000000000000000000000000600082015250565b6000613dd5601283612e28565b9150613de082613d9f565b602082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b6000613e1682612ecf565b9150613e2183612ecf565b9250828201905080821115613e3957613e38613888565b5b92915050565b7f536f6c64206f7574206f7220747279206c657373207175616e746974792e0000600082015250565b6000613e75601e83612e28565b9150613e8082613e3f565b602082019050919050565b60006020820190508181036000830152613ea481613e68565b9050919050565b7f4d696e74696e6720697320706175736564210000000000000000000000000000600082015250565b6000613ee1601283612e28565b9150613eec82613eab565b602082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4d696e696d756d2031204e465400000000000000000000000000000000000000600082015250565b6000613f4d600d83612e28565b9150613f5882613f17565b602082019050919050565b60006020820190508181036000830152613f7c81613f40565b9050919050565b7f536f6c64206f7574206f7220747279206120736d616c6c6572207175616e746960008201527f7479000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fdf602283612e28565b9150613fea82613f83565b604082019050919050565b6000602082019050818103600083015261400e81613fd2565b9050919050565b600061402082612ecf565b915061402b83612ecf565b925082820261403981612ecf565b915082820484148315176140505761404f613888565b5b5092915050565b7f496e73756666696369656e74207061796d656e7420666f72207468652072657160008201527f756573746564207175616e746974792e00000000000000000000000000000000602082015250565b60006140b3603083612e28565b91506140be82614057565b604082019050919050565b600060208201905081810360008301526140e2816140a6565b9050919050565b7f5061796d656e7420746f2074686520636f6e7472616374206f776e657220666160008201527f696c65642e000000000000000000000000000000000000000000000000000000602082015250565b6000614145602583612e28565b9150614150826140e9565b604082019050919050565b6000602082019050818103600083015261417481614138565b9050919050565b600081905092915050565b600061419182612e1d565b61419b818561417b565b93506141ab818560208601612e39565b80840191505092915050565b60006141c38285614186565b91506141cf8284614186565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614237602683612e28565b9150614242826141db565b604082019050919050565b600060208201905081810360008301526142668161422a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142a3602083612e28565b91506142ae8261426d565b602082019050919050565b600060208201905081810360008301526142d281614296565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614335602583612e28565b9150614340826142d9565b604082019050919050565b6000602082019050818103600083015261436481614328565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143c7602483612e28565b91506143d28261436b565b604082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614433601f83612e28565b915061443e826143fd565b602082019050919050565b6000602082019050818103600083015261446281614426565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061449f601983612e28565b91506144aa82614469565b602082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614531603283612e28565b915061453c826144d5565b604082019050919050565b6000602082019050818103600083015261456081614524565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006145f2603583612e28565b91506145fd82614596565b604082019050919050565b60006020820190508181036000830152614621816145e5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061464f82614628565b6146598185614633565b9350614669818560208601612e39565b61467281612e63565b840191505092915050565b60006080820190506146926000830187612f64565b61469f6020830186612f64565b6146ac6040830185613053565b81810360608301526146be8184614644565b905095945050505050565b6000815190506146d881612d8e565b92915050565b6000602082840312156146f4576146f3612d58565b5b6000614702848285016146c9565b91505092915050565b600061471682612ecf565b915061472183612ecf565b925082820390508181111561473957614738613888565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006147a4602083612e28565b91506147af8261476e565b602082019050919050565b600060208201905081810360008301526147d381614797565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614810601c83612e28565b915061481b826147da565b602082019050919050565b6000602082019050818103600083015261483f81614803565b905091905056fea2646970667358221220bc2117c22ebe8d3388784fc3e6ea74dc3151ee78f6712e3a3bb1b39037ed29c064736f6c63430008120033
Deployed Bytecode Sourcemap
70259:4031:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60420:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44469:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45981:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45499:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72639:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61060:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72732:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46681:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60728:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74105:182;;;;;;;;;;;;;:::i;:::-;;47053:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70604:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73072:681;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61250:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72950:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71939:262;;;;;;;;;;;;;:::i;:::-;;70571:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44179:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72840:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43910:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68231:103;;;;;;;;;;;;;:::i;:::-;;72209:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67590:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44638:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70774:1157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46224:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47275:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74000:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44813:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70458:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46450:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68489:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70411:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60420:224;60522:4;60561:35;60546:50;;;:11;:50;;;;:90;;;;60600:36;60624:11;60600:23;:36::i;:::-;60546:90;60539:97;;60420:224;;;:::o;44469:100::-;44523:13;44556:5;44549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44469:100;:::o;45981:171::-;46057:7;46077:23;46092:7;46077:14;:23::i;:::-;46120:15;:24;46136:7;46120:24;;;;;;;;;;;;;;;;;;;;;46113:31;;45981:171;;;:::o;45499:416::-;45580:13;45596:23;45611:7;45596:14;:23::i;:::-;45580:39;;45644:5;45638:11;;:2;:11;;;45630:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45738:5;45722:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45747:37;45764:5;45771:12;:10;:12::i;:::-;45747:16;:37::i;:::-;45722:62;45700:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;45886:21;45895:2;45899:7;45886:8;:21::i;:::-;45569:346;45499:416;;:::o;72639:85::-;67476:13;:11;:13::i;:::-;72710:6:::1;72701;;:15;;;;;;;;;;;;;;;;;;72639:85:::0;:::o;61060:113::-;61121:7;61148:10;:17;;;;61141:24;;61060:113;:::o;72732:100::-;67476:13;:11;:13::i;:::-;72815:9:::1;72803;:21;;;;72732:100:::0;:::o;46681:301::-;46842:41;46861:12;:10;:12::i;:::-;46875:7;46842:18;:41::i;:::-;46834:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;46946:28;46956:4;46962:2;46966:7;46946:9;:28::i;:::-;46681:301;;;:::o;60728:256::-;60825:7;60861:23;60878:5;60861:16;:23::i;:::-;60853:5;:31;60845:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;60950:12;:19;60963:5;60950:19;;;;;;;;;;;;;;;:26;60970:5;60950:26;;;;;;;;;;;;60943:33;;60728:256;;;;:::o;74105:182::-;67476:13;:11;:13::i;:::-;74156:12:::1;74182:10;74174:24;;74206:21;74174:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74155:77;;;74251:7;74243:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;74144:143;74105:182::o:0;47053:151::-;47157:39;47174:4;47180:2;47184:7;47157:39;;;;;;;;;;;;:16;:39::i;:::-;47053:151;;;:::o;70604:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;73072:681::-;73134:16;73163:23;73189:17;73199:6;73189:9;:17::i;:::-;73163:43;;73217:30;73264:15;73250:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73217:63;;73291:22;73316:1;73291:26;;73328:23;73368:347;73393:15;73375;:33;:64;;;;;73430:9;;73412:14;:27;;73375:64;73368:347;;;73456:25;73484:23;73492:14;73484:7;:23::i;:::-;73456:51;;73547:6;73526:27;;:17;:27;;;73522:151;;73607:14;73574:13;73588:15;73574:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;73640:17;;;;;:::i;:::-;;;;73522:151;73687:16;;;;;:::i;:::-;;;;73441:274;73368:347;;;73732:13;73725:20;;;;;;73072:681;;;:::o;61250:233::-;61325:7;61361:30;:28;:30::i;:::-;61353:5;:38;61345:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;61458:10;61469:5;61458:17;;;;;;;;:::i;:::-;;;;;;;;;;61451:24;;61250:233;;;:::o;72950:114::-;67476:13;:11;:13::i;:::-;73045:11:::1;73025:17;:31;;;;;;:::i;:::-;;72950:114:::0;:::o;71939:262::-;3506:21;:19;:21::i;:::-;72001:18:::1;:30;72020:10;72001:30;;;;;;;;;;;;;;;;;;;;;;;;;72000:31;71992:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;72120:4;72087:18;:30;72106:10;72087:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;72135:34;72145:10;72157:11;;72135:9;:34::i;:::-;72180:11;;:13;;;;;;;;;:::i;:::-;;;;;;3550:20:::0;:18;:20::i;:::-;71939:262::o;70571:26::-;;;;;;;;;;;;;:::o;44179:223::-;44251:7;44271:13;44287:17;44296:7;44287:8;:17::i;:::-;44271:33;;44340:1;44323:19;;:5;:19;;;44315:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;44389:5;44382:12;;;44179:223;;;:::o;72840:102::-;67476:13;:11;:13::i;:::-;72924:10:::1;72912:9;:22;;;;72840:102:::0;:::o;43910:207::-;43982:7;44027:1;44010:19;;:5;:19;;;44002:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44093:9;:16;44103:5;44093:16;;;;;;;;;;;;;;;;44086:23;;43910:207;;;:::o;68231:103::-;67476:13;:11;:13::i;:::-;68296:30:::1;68323:1;68296:18;:30::i;:::-;68231:103::o:0;72209:422::-;67476:13;:11;:13::i;:::-;72288:14:::1;72305:13;:11;:13::i;:::-;72288:30;;72338:6;;;;;;;;;;;72337:7;72329:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;72422:9;;72412:6;72400:9;:18;;;;:::i;:::-;:31;;72378:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;72507:9;72502:122;72526:9;72522:1;:13;72502:122;;;72557:27;72567:3;72572:11;;72557:9;:27::i;:::-;72599:11;;:13;;;;;;;;;:::i;:::-;;;;;;72537:3;;;;;:::i;:::-;;;;72502:122;;;;72277:354;72209:422:::0;;:::o;67590:87::-;67636:7;67663:6;;;;;;;;;;;67656:13;;67590:87;:::o;44638:104::-;44694:13;44727:7;44720:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44638:104;:::o;70774:1157::-;3506:21;:19;:21::i;:::-;70848:14:::1;70865:13;:11;:13::i;:::-;70848:30;;70898:6;;;;;;;;;;;70897:7;70889:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;70958:1;70946:9;:13;70938:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;71018:9;;71008:6;70996:9;:18;;;;:::i;:::-;:31;;70988:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;71077:24;71116:9;;71104;:21;;;;:::i;:::-;71077:48;;71166:1;71142:21;71152:10;71142:9;:21::i;:::-;:25;71138:632;;;71217:9;;71205;:21;;;;:::i;:::-;71192:9;:34;;71184:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;71299:9;71294:141;71318:9;71314:1;:13;71294:141;;;71353:34;71363:10;71375:11;;71353:9;:34::i;:::-;71406:11;;:13;;;;;;;;;:::i;:::-;;;;;;71329:3;;;;;:::i;:::-;;;;71294:141;;;;71138:632;;;71476:18;:30;71495:10;71476:30;;;;;;;;;;;;;;;;;;;;;;;;;71475:31;71467:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;71599:4;71566:18;:30;71585:10;71566:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;71623:9;71618:141;71642:9;71638:1;:13;71618:141;;;71677:34;71687:10;71699:11;;71677:9;:34::i;:::-;71730:11;;:13;;;;;;;;;:::i;:::-;;;;;;71653:3;;;;;:::i;:::-;;;;71618:141;;;;71138:632;71781:12;71807:13;;;;;;;;;;;71799:27;;71834:16;71799:56;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71780:75;;;71874:7;71866:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;70837:1094;;;3550:20:::0;:18;:20::i;:::-;70774:1157;:::o;46224:155::-;46319:52;46338:12;:10;:12::i;:::-;46352:8;46362;46319:18;:52::i;:::-;46224:155;;:::o;47275:279::-;47406:41;47425:12;:10;:12::i;:::-;47439:7;47406:18;:41::i;:::-;47398:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;47508:38;47522:4;47528:2;47532:7;47541:4;47508:13;:38::i;:::-;47275:279;;;;:::o;74000:97::-;74049:7;74076:13;:11;:13::i;:::-;74069:20;;74000:97;:::o;44813:281::-;44886:13;44912:23;44927:7;44912:14;:23::i;:::-;44948:21;44972:10;:8;:10::i;:::-;44948:34;;45024:1;45006:7;45000:21;:25;:86;;;;;;;;;;;;;;;;;45052:7;45061:18;:7;:16;:18::i;:::-;45035:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45000:86;44993:93;;;44813:281;;;:::o;70458:32::-;;;;:::o;46450:164::-;46547:4;46571:18;:25;46590:5;46571:25;;;;;;;;;;;;;;;:35;46597:8;46571:35;;;;;;;;;;;;;;;;;;;;;;;;;46564:42;;46450:164;;;;:::o;68489:201::-;67476:13;:11;:13::i;:::-;68598:1:::1;68578:22;;:8;:22;;::::0;68570:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;68654:28;68673:8;68654:18;:28::i;:::-;68489:201:::0;:::o;70411:40::-;;;;:::o;43541:305::-;43643:4;43695:25;43680:40;;;:11;:40;;;;:105;;;;43752:33;43737:48;;;:11;:48;;;;43680:105;:158;;;;43802:36;43826:11;43802:23;:36::i;:::-;43680:158;43660:178;;43541:305;;;:::o;55544:135::-;55626:16;55634:7;55626;:16::i;:::-;55618:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;55544:135;:::o;41920:98::-;41973:7;42000:10;41993:17;;41920:98;:::o;54857:174::-;54959:2;54932:15;:24;54948:7;54932:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;55015:7;55011:2;54977:46;;54986:23;55001:7;54986:14;:23::i;:::-;54977:46;;;;;;;;;;;;54857:174;;:::o;67755:132::-;67830:12;:10;:12::i;:::-;67819:23;;:7;:5;:7::i;:::-;:23;;;67811:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67755:132::o;49544:264::-;49637:4;49654:13;49670:23;49685:7;49670:14;:23::i;:::-;49654:39;;49723:5;49712:16;;:7;:16;;;:52;;;;49732:32;49749:5;49756:7;49732:16;:32::i;:::-;49712:52;:87;;;;49792:7;49768:31;;:20;49780:7;49768:11;:20::i;:::-;:31;;;49712:87;49704:96;;;49544:264;;;;:::o;53509:1229::-;53634:4;53607:31;;:23;53622:7;53607:14;:23::i;:::-;:31;;;53599:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53713:1;53699:16;;:2;:16;;;53691:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53769:42;53790:4;53796:2;53800:7;53809:1;53769:20;:42::i;:::-;53941:4;53914:31;;:23;53929:7;53914:14;:23::i;:::-;:31;;;53906:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54059:15;:24;54075:7;54059:24;;;;;;;;;;;;54052:31;;;;;;;;;;;54554:1;54535:9;:15;54545:4;54535:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;54587:1;54570:9;:13;54580:2;54570:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;54629:2;54610:7;:16;54618:7;54610:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;54668:7;54664:2;54649:27;;54658:4;54649:27;;;;;;;;;;;;54689:41;54709:4;54715:2;54719:7;54728:1;54689:19;:41::i;:::-;53509:1229;;;:::o;3586:293::-;2988:1;3720:7;;:19;3712:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2988:1;3853:7;:18;;;;3586:293::o;50150:110::-;50226:26;50236:2;50240:7;50226:26;;;;;;;;;;;;:9;:26::i;:::-;50150:110;;:::o;3887:213::-;2944:1;4070:7;:22;;;;3887:213::o;48819:117::-;48885:7;48912;:16;48920:7;48912:16;;;;;;;;;;;;;;;;;;;;;48905:23;;48819:117;;;:::o;68850:191::-;68924:16;68943:6;;;;;;;;;;;68924:25;;68969:8;68960:6;;:17;;;;;;;;;;;;;;;;;;69024:8;68993:40;;69014:8;68993:40;;;;;;;;;;;;68913:128;68850:191;:::o;55174:281::-;55295:8;55286:17;;:5;:17;;;55278:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;55382:8;55344:18;:25;55363:5;55344:25;;;;;;;;;;;;;;;:35;55370:8;55344:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;55428:8;55406:41;;55421:5;55406:41;;;55438:8;55406:41;;;;;;:::i;:::-;;;;;;;;55174:281;;;:::o;48435:270::-;48548:28;48558:4;48564:2;48568:7;48548:9;:28::i;:::-;48595:47;48618:4;48624:2;48628:7;48637:4;48595:22;:47::i;:::-;48587:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;48435:270;;;;:::o;73761:118::-;73821:13;73854:17;73847:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73761:118;:::o;19321:716::-;19377:13;19428:14;19465:1;19445:17;19456:5;19445:10;:17::i;:::-;:21;19428:38;;19481:20;19515:6;19504:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19481:41;;19537:11;19666:6;19662:2;19658:15;19650:6;19646:28;19639:35;;19703:288;19710:4;19703:288;;;19735:5;;;;;;;;19877:8;19872:2;19865:5;19861:14;19856:30;19851:3;19843:44;19933:2;19924:11;;;;;;:::i;:::-;;;;;19967:1;19958:5;:10;19703:288;19954:21;19703:288;20012:6;20005:13;;;;;19321:716;;;:::o;34192:157::-;34277:4;34316:25;34301:40;;;:11;:40;;;;34294:47;;34192:157;;;:::o;49249:128::-;49314:4;49367:1;49338:31;;:17;49347:7;49338:8;:17::i;:::-;:31;;;;49331:38;;49249:128;;;:::o;61557:915::-;61734:61;61761:4;61767:2;61771:12;61785:9;61734:26;:61::i;:::-;61824:1;61812:9;:13;61808:222;;;61955:63;;;;;;;;;;:::i;:::-;;;;;;;;61808:222;62042:15;62060:12;62042:30;;62105:1;62089:18;;:4;:18;;;62085:187;;62124:40;62156:7;62124:31;:40::i;:::-;62085:187;;;62194:2;62186:10;;:4;:10;;;62182:90;;62213:47;62246:4;62252:7;62213:32;:47::i;:::-;62182:90;62085:187;62300:1;62286:16;;:2;:16;;;62282:183;;62319:45;62356:7;62319:36;:45::i;:::-;62282:183;;;62392:4;62386:10;;:2;:10;;;62382:83;;62413:40;62441:2;62445:7;62413:27;:40::i;:::-;62382:83;62282:183;61723:749;61557:915;;;;:::o;58666:115::-;;;;;:::o;50487:285::-;50582:18;50588:2;50592:7;50582:5;:18::i;:::-;50633:53;50664:1;50668:2;50672:7;50681:4;50633:22;:53::i;:::-;50611:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;50487:285;;;:::o;56243:853::-;56397:4;56418:15;:2;:13;;;:15::i;:::-;56414:675;;;56470:2;56454:36;;;56491:12;:10;:12::i;:::-;56505:4;56511:7;56520:4;56454:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56450:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56712:1;56695:6;:13;:18;56691:328;;56738:60;;;;;;;;;;:::i;:::-;;;;;;;;56691:328;56969:6;56963:13;56954:6;56950:2;56946:15;56939:38;56450:584;56586:41;;;56576:51;;;:6;:51;;;;56569:58;;;;;56414:675;57073:4;57066:11;;56243:853;;;;;;;:::o;16155:948::-;16208:7;16228:14;16245:1;16228:18;;16295:8;16286:5;:17;16282:106;;16333:8;16324:17;;;;;;:::i;:::-;;;;;16370:2;16360:12;;;;16282:106;16415:8;16406:5;:17;16402:106;;16453:8;16444:17;;;;;;:::i;:::-;;;;;16490:2;16480:12;;;;16402:106;16535:8;16526:5;:17;16522:106;;16573:8;16564:17;;;;;;:::i;:::-;;;;;16610:2;16600:12;;;;16522:106;16655:7;16646:5;:16;16642:103;;16692:7;16683:16;;;;;;:::i;:::-;;;;;16728:1;16718:11;;;;16642:103;16772:7;16763:5;:16;16759:103;;16809:7;16800:16;;;;;;:::i;:::-;;;;;16845:1;16835:11;;;;16759:103;16889:7;16880:5;:16;16876:103;;16926:7;16917:16;;;;;;:::i;:::-;;;;;16962:1;16952:11;;;;16876:103;17006:7;16997:5;:16;16993:68;;17044:1;17034:11;;;;16993:68;17089:6;17082:13;;;16155:948;;;:::o;57828:116::-;;;;;:::o;63195:164::-;63299:10;:17;;;;63272:15;:24;63288:7;63272:24;;;;;;;;;;;:44;;;;63327:10;63343:7;63327:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63195:164;:::o;63986:988::-;64252:22;64302:1;64277:22;64294:4;64277:16;:22::i;:::-;:26;;;;:::i;:::-;64252:51;;64314:18;64335:17;:26;64353:7;64335:26;;;;;;;;;;;;64314:47;;64482:14;64468:10;:28;64464:328;;64513:19;64535:12;:18;64548:4;64535:18;;;;;;;;;;;;;;;:34;64554:14;64535:34;;;;;;;;;;;;64513:56;;64619:11;64586:12;:18;64599:4;64586:18;;;;;;;;;;;;;;;:30;64605:10;64586:30;;;;;;;;;;;:44;;;;64736:10;64703:17;:30;64721:11;64703:30;;;;;;;;;;;:43;;;;64498:294;64464:328;64888:17;:26;64906:7;64888:26;;;;;;;;;;;64881:33;;;64932:12;:18;64945:4;64932:18;;;;;;;;;;;;;;;:34;64951:14;64932:34;;;;;;;;;;;64925:41;;;64067:907;;63986:988;;:::o;65269:1079::-;65522:22;65567:1;65547:10;:17;;;;:21;;;;:::i;:::-;65522:46;;65579:18;65600:15;:24;65616:7;65600:24;;;;;;;;;;;;65579:45;;65951:19;65973:10;65984:14;65973:26;;;;;;;;:::i;:::-;;;;;;;;;;65951:48;;66037:11;66012:10;66023;66012:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;66148:10;66117:15;:28;66133:11;66117:28;;;;;;;;;;;:41;;;;66289:15;:24;66305:7;66289:24;;;;;;;;;;;66282:31;;;66324:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;65340:1008;;;65269:1079;:::o;62773:221::-;62858:14;62875:20;62892:2;62875:16;:20::i;:::-;62858:37;;62933:7;62906:12;:16;62919:2;62906:16;;;;;;;;;;;;;;;:24;62923:6;62906:24;;;;;;;;;;;:34;;;;62980:6;62951:17;:26;62969:7;62951:26;;;;;;;;;;;:35;;;;62847:147;62773:221;;:::o;51108:942::-;51202:1;51188:16;;:2;:16;;;51180:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51261:16;51269:7;51261;:16::i;:::-;51260:17;51252:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51323:48;51352:1;51356:2;51360:7;51369:1;51323:20;:48::i;:::-;51470:16;51478:7;51470;:16::i;:::-;51469:17;51461:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51885:1;51868:9;:13;51878:2;51868:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51929:2;51910:7;:16;51918:7;51910:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51974:7;51970:2;51949:33;;51966:1;51949:33;;;;;;;;;;;;51995:47;52023:1;52027:2;52031:7;52040:1;51995:19;:47::i;:::-;51108:942;;:::o;23197:326::-;23257:4;23514:1;23492:7;:19;;;:23;23485:30;;23197:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:116::-;4960:21;4975:5;4960:21;:::i;:::-;4953:5;4950:32;4940:60;;4996:1;4993;4986:12;4940:60;4890:116;:::o;5012:133::-;5055:5;5093:6;5080:20;5071:29;;5109:30;5133:5;5109:30;:::i;:::-;5012:133;;;;:::o;5151:323::-;5207:6;5256:2;5244:9;5235:7;5231:23;5227:32;5224:119;;;5262:79;;:::i;:::-;5224:119;5382:1;5407:50;5449:7;5440:6;5429:9;5425:22;5407:50;:::i;:::-;5397:60;;5353:114;5151:323;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:329::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6662:117;6457:329;;;;:::o;6792:114::-;6859:6;6893:5;6887:12;6877:22;;6792:114;;;:::o;6912:184::-;7011:11;7045:6;7040:3;7033:19;7085:4;7080:3;7076:14;7061:29;;6912:184;;;;:::o;7102:132::-;7169:4;7192:3;7184:11;;7222:4;7217:3;7213:14;7205:22;;7102:132;;;:::o;7240:108::-;7317:24;7335:5;7317:24;:::i;:::-;7312:3;7305:37;7240:108;;:::o;7354:179::-;7423:10;7444:46;7486:3;7478:6;7444:46;:::i;:::-;7522:4;7517:3;7513:14;7499:28;;7354:179;;;;:::o;7539:113::-;7609:4;7641;7636:3;7632:14;7624:22;;7539:113;;;:::o;7688:732::-;7807:3;7836:54;7884:5;7836:54;:::i;:::-;7906:86;7985:6;7980:3;7906:86;:::i;:::-;7899:93;;8016:56;8066:5;8016:56;:::i;:::-;8095:7;8126:1;8111:284;8136:6;8133:1;8130:13;8111:284;;;8212:6;8206:13;8239:63;8298:3;8283:13;8239:63;:::i;:::-;8232:70;;8325:60;8378:6;8325:60;:::i;:::-;8315:70;;8171:224;8158:1;8155;8151:9;8146:14;;8111:284;;;8115:14;8411:3;8404:10;;7812:608;;;7688:732;;;;:::o;8426:373::-;8569:4;8607:2;8596:9;8592:18;8584:26;;8656:9;8650:4;8646:20;8642:1;8631:9;8627:17;8620:47;8684:108;8787:4;8778:6;8684:108;:::i;:::-;8676:116;;8426:373;;;;:::o;8805:117::-;8914:1;8911;8904:12;8928:117;9037:1;9034;9027:12;9051:180;9099:77;9096:1;9089:88;9196:4;9193:1;9186:15;9220:4;9217:1;9210:15;9237:281;9320:27;9342:4;9320:27;:::i;:::-;9312:6;9308:40;9450:6;9438:10;9435:22;9414:18;9402:10;9399:34;9396:62;9393:88;;;9461:18;;:::i;:::-;9393:88;9501:10;9497:2;9490:22;9280:238;9237:281;;:::o;9524:129::-;9558:6;9585:20;;:::i;:::-;9575:30;;9614:33;9642:4;9634:6;9614:33;:::i;:::-;9524:129;;;:::o;9659:308::-;9721:4;9811:18;9803:6;9800:30;9797:56;;;9833:18;;:::i;:::-;9797:56;9871:29;9893:6;9871:29;:::i;:::-;9863:37;;9955:4;9949;9945:15;9937:23;;9659:308;;;:::o;9973:146::-;10070:6;10065:3;10060;10047:30;10111:1;10102:6;10097:3;10093:16;10086:27;9973:146;;;:::o;10125:425::-;10203:5;10228:66;10244:49;10286:6;10244:49;:::i;:::-;10228:66;:::i;:::-;10219:75;;10317:6;10310:5;10303:21;10355:4;10348:5;10344:16;10393:3;10384:6;10379:3;10375:16;10372:25;10369:112;;;10400:79;;:::i;:::-;10369:112;10490:54;10537:6;10532:3;10527;10490:54;:::i;:::-;10209:341;10125:425;;;;;:::o;10570:340::-;10626:5;10675:3;10668:4;10660:6;10656:17;10652:27;10642:122;;10683:79;;:::i;:::-;10642:122;10800:6;10787:20;10825:79;10900:3;10892:6;10885:4;10877:6;10873:17;10825:79;:::i;:::-;10816:88;;10632:278;10570:340;;;;:::o;10916:509::-;10985:6;11034:2;11022:9;11013:7;11009:23;11005:32;11002:119;;;11040:79;;:::i;:::-;11002:119;11188:1;11177:9;11173:17;11160:31;11218:18;11210:6;11207:30;11204:117;;;11240:79;;:::i;:::-;11204:117;11345:63;11400:7;11391:6;11380:9;11376:22;11345:63;:::i;:::-;11335:73;;11131:287;10916:509;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:180::-;14481:77;14478:1;14471:88;14578:4;14575:1;14568:15;14602:4;14599:1;14592:15;14619:320;14663:6;14700:1;14694:4;14690:12;14680:22;;14747:1;14741:4;14737:12;14768:18;14758:81;;14824:4;14816:6;14812:17;14802:27;;14758:81;14886:2;14878:6;14875:14;14855:18;14852:38;14849:84;;14905:18;;:::i;:::-;14849:84;14670:269;14619:320;;;:::o;14945:220::-;15085:34;15081:1;15073:6;15069:14;15062:58;15154:3;15149:2;15141:6;15137:15;15130:28;14945:220;:::o;15171:366::-;15313:3;15334:67;15398:2;15393:3;15334:67;:::i;:::-;15327:74;;15410:93;15499:3;15410:93;:::i;:::-;15528:2;15523:3;15519:12;15512:19;;15171:366;;;:::o;15543:419::-;15709:4;15747:2;15736:9;15732:18;15724:26;;15796:9;15790:4;15786:20;15782:1;15771:9;15767:17;15760:47;15824:131;15950:4;15824:131;:::i;:::-;15816:139;;15543:419;;;:::o;15968:248::-;16108:34;16104:1;16096:6;16092:14;16085:58;16177:31;16172:2;16164:6;16160:15;16153:56;15968:248;:::o;16222:366::-;16364:3;16385:67;16449:2;16444:3;16385:67;:::i;:::-;16378:74;;16461:93;16550:3;16461:93;:::i;:::-;16579:2;16574:3;16570:12;16563:19;;16222:366;;;:::o;16594:419::-;16760:4;16798:2;16787:9;16783:18;16775:26;;16847:9;16841:4;16837:20;16833:1;16822:9;16818:17;16811:47;16875:131;17001:4;16875:131;:::i;:::-;16867:139;;16594:419;;;:::o;17019:232::-;17159:34;17155:1;17147:6;17143:14;17136:58;17228:15;17223:2;17215:6;17211:15;17204:40;17019:232;:::o;17257:366::-;17399:3;17420:67;17484:2;17479:3;17420:67;:::i;:::-;17413:74;;17496:93;17585:3;17496:93;:::i;:::-;17614:2;17609:3;17605:12;17598:19;;17257:366;;;:::o;17629:419::-;17795:4;17833:2;17822:9;17818:18;17810:26;;17882:9;17876:4;17872:20;17868:1;17857:9;17853:17;17846:47;17910:131;18036:4;17910:131;:::i;:::-;17902:139;;17629:419;;;:::o;18054:230::-;18194:34;18190:1;18182:6;18178:14;18171:58;18263:13;18258:2;18250:6;18246:15;18239:38;18054:230;:::o;18290:366::-;18432:3;18453:67;18517:2;18512:3;18453:67;:::i;:::-;18446:74;;18529:93;18618:3;18529:93;:::i;:::-;18647:2;18642:3;18638:12;18631:19;;18290:366;;;:::o;18662:419::-;18828:4;18866:2;18855:9;18851:18;18843:26;;18915:9;18909:4;18905:20;18901:1;18890:9;18886:17;18879:47;18943:131;19069:4;18943:131;:::i;:::-;18935:139;;18662:419;;;:::o;19087:147::-;19188:11;19225:3;19210:18;;19087:147;;;;:::o;19240:114::-;;:::o;19360:398::-;19519:3;19540:83;19621:1;19616:3;19540:83;:::i;:::-;19533:90;;19632:93;19721:3;19632:93;:::i;:::-;19750:1;19745:3;19741:11;19734:18;;19360:398;;;:::o;19764:379::-;19948:3;19970:147;20113:3;19970:147;:::i;:::-;19963:154;;20134:3;20127:10;;19764:379;;;:::o;20149:166::-;20289:18;20285:1;20277:6;20273:14;20266:42;20149:166;:::o;20321:366::-;20463:3;20484:67;20548:2;20543:3;20484:67;:::i;:::-;20477:74;;20560:93;20649:3;20560:93;:::i;:::-;20678:2;20673:3;20669:12;20662:19;;20321:366;;;:::o;20693:419::-;20859:4;20897:2;20886:9;20882:18;20874:26;;20946:9;20940:4;20936:20;20932:1;20921:9;20917:17;20910:47;20974:131;21100:4;20974:131;:::i;:::-;20966:139;;20693:419;;;:::o;21118:180::-;21166:77;21163:1;21156:88;21263:4;21260:1;21253:15;21287:4;21284:1;21277:15;21304:180;21352:77;21349:1;21342:88;21449:4;21446:1;21439:15;21473:4;21470:1;21463:15;21490:233;21529:3;21552:24;21570:5;21552:24;:::i;:::-;21543:33;;21598:66;21591:5;21588:77;21585:103;;21668:18;;:::i;:::-;21585:103;21715:1;21708:5;21704:13;21697:20;;21490:233;;;:::o;21729:231::-;21869:34;21865:1;21857:6;21853:14;21846:58;21938:14;21933:2;21925:6;21921:15;21914:39;21729:231;:::o;21966:366::-;22108:3;22129:67;22193:2;22188:3;22129:67;:::i;:::-;22122:74;;22205:93;22294:3;22205:93;:::i;:::-;22323:2;22318:3;22314:12;22307:19;;21966:366;;;:::o;22338:419::-;22504:4;22542:2;22531:9;22527:18;22519:26;;22591:9;22585:4;22581:20;22577:1;22566:9;22562:17;22555:47;22619:131;22745:4;22619:131;:::i;:::-;22611:139;;22338:419;;;:::o;22763:141::-;22812:4;22835:3;22827:11;;22858:3;22855:1;22848:14;22892:4;22889:1;22879:18;22871:26;;22763:141;;;:::o;22910:93::-;22947:6;22994:2;22989;22982:5;22978:14;22974:23;22964:33;;22910:93;;;:::o;23009:107::-;23053:8;23103:5;23097:4;23093:16;23072:37;;23009:107;;;;:::o;23122:393::-;23191:6;23241:1;23229:10;23225:18;23264:97;23294:66;23283:9;23264:97;:::i;:::-;23382:39;23412:8;23401:9;23382:39;:::i;:::-;23370:51;;23454:4;23450:9;23443:5;23439:21;23430:30;;23503:4;23493:8;23489:19;23482:5;23479:30;23469:40;;23198:317;;23122:393;;;;;:::o;23521:60::-;23549:3;23570:5;23563:12;;23521:60;;;:::o;23587:142::-;23637:9;23670:53;23688:34;23697:24;23715:5;23697:24;:::i;:::-;23688:34;:::i;:::-;23670:53;:::i;:::-;23657:66;;23587:142;;;:::o;23735:75::-;23778:3;23799:5;23792:12;;23735:75;;;:::o;23816:269::-;23926:39;23957:7;23926:39;:::i;:::-;23987:91;24036:41;24060:16;24036:41;:::i;:::-;24028:6;24021:4;24015:11;23987:91;:::i;:::-;23981:4;23974:105;23892:193;23816:269;;;:::o;24091:73::-;24136:3;24091:73;:::o;24170:189::-;24247:32;;:::i;:::-;24288:65;24346:6;24338;24332:4;24288:65;:::i;:::-;24223:136;24170:189;;:::o;24365:186::-;24425:120;24442:3;24435:5;24432:14;24425:120;;;24496:39;24533:1;24526:5;24496:39;:::i;:::-;24469:1;24462:5;24458:13;24449:22;;24425:120;;;24365:186;;:::o;24557:543::-;24658:2;24653:3;24650:11;24647:446;;;24692:38;24724:5;24692:38;:::i;:::-;24776:29;24794:10;24776:29;:::i;:::-;24766:8;24762:44;24959:2;24947:10;24944:18;24941:49;;;24980:8;24965:23;;24941:49;25003:80;25059:22;25077:3;25059:22;:::i;:::-;25049:8;25045:37;25032:11;25003:80;:::i;:::-;24662:431;;24647:446;24557:543;;;:::o;25106:117::-;25160:8;25210:5;25204:4;25200:16;25179:37;;25106:117;;;;:::o;25229:169::-;25273:6;25306:51;25354:1;25350:6;25342:5;25339:1;25335:13;25306:51;:::i;:::-;25302:56;25387:4;25381;25377:15;25367:25;;25280:118;25229:169;;;;:::o;25403:295::-;25479:4;25625:29;25650:3;25644:4;25625:29;:::i;:::-;25617:37;;25687:3;25684:1;25680:11;25674:4;25671:21;25663:29;;25403:295;;;;:::o;25703:1395::-;25820:37;25853:3;25820:37;:::i;:::-;25922:18;25914:6;25911:30;25908:56;;;25944:18;;:::i;:::-;25908:56;25988:38;26020:4;26014:11;25988:38;:::i;:::-;26073:67;26133:6;26125;26119:4;26073:67;:::i;:::-;26167:1;26191:4;26178:17;;26223:2;26215:6;26212:14;26240:1;26235:618;;;;26897:1;26914:6;26911:77;;;26963:9;26958:3;26954:19;26948:26;26939:35;;26911:77;27014:67;27074:6;27067:5;27014:67;:::i;:::-;27008:4;27001:81;26870:222;26205:887;;26235:618;26287:4;26283:9;26275:6;26271:22;26321:37;26353:4;26321:37;:::i;:::-;26380:1;26394:208;26408:7;26405:1;26402:14;26394:208;;;26487:9;26482:3;26478:19;26472:26;26464:6;26457:42;26538:1;26530:6;26526:14;26516:24;;26585:2;26574:9;26570:18;26557:31;;26431:4;26428:1;26424:12;26419:17;;26394:208;;;26630:6;26621:7;26618:19;26615:179;;;26688:9;26683:3;26679:19;26673:26;26731:48;26773:4;26765:6;26761:17;26750:9;26731:48;:::i;:::-;26723:6;26716:64;26638:156;26615:179;26840:1;26836;26828:6;26824:14;26820:22;26814:4;26807:36;26242:611;;;26205:887;;25795:1303;;;25703:1395;;:::o;27104:227::-;27244:34;27240:1;27232:6;27228:14;27221:58;27313:10;27308:2;27300:6;27296:15;27289:35;27104:227;:::o;27337:366::-;27479:3;27500:67;27564:2;27559:3;27500:67;:::i;:::-;27493:74;;27576:93;27665:3;27576:93;:::i;:::-;27694:2;27689:3;27685:12;27678:19;;27337:366;;;:::o;27709:419::-;27875:4;27913:2;27902:9;27898:18;27890:26;;27962:9;27956:4;27952:20;27948:1;27937:9;27933:17;27926:47;27990:131;28116:4;27990:131;:::i;:::-;27982:139;;27709:419;;;:::o;28134:174::-;28274:26;28270:1;28262:6;28258:14;28251:50;28134:174;:::o;28314:366::-;28456:3;28477:67;28541:2;28536:3;28477:67;:::i;:::-;28470:74;;28553:93;28642:3;28553:93;:::i;:::-;28671:2;28666:3;28662:12;28655:19;;28314:366;;;:::o;28686:419::-;28852:4;28890:2;28879:9;28875:18;28867:26;;28939:9;28933:4;28929:20;28925:1;28914:9;28910:17;28903:47;28967:131;29093:4;28967:131;:::i;:::-;28959:139;;28686:419;;;:::o;29111:228::-;29251:34;29247:1;29239:6;29235:14;29228:58;29320:11;29315:2;29307:6;29303:15;29296:36;29111:228;:::o;29345:366::-;29487:3;29508:67;29572:2;29567:3;29508:67;:::i;:::-;29501:74;;29584:93;29673:3;29584:93;:::i;:::-;29702:2;29697:3;29693:12;29686:19;;29345:366;;;:::o;29717:419::-;29883:4;29921:2;29910:9;29906:18;29898:26;;29970:9;29964:4;29960:20;29956:1;29945:9;29941:17;29934:47;29998:131;30124:4;29998:131;:::i;:::-;29990:139;;29717:419;;;:::o;30142:168::-;30282:20;30278:1;30270:6;30266:14;30259:44;30142:168;:::o;30316:366::-;30458:3;30479:67;30543:2;30538:3;30479:67;:::i;:::-;30472:74;;30555:93;30644:3;30555:93;:::i;:::-;30673:2;30668:3;30664:12;30657:19;;30316:366;;;:::o;30688:419::-;30854:4;30892:2;30881:9;30877:18;30869:26;;30941:9;30935:4;30931:20;30927:1;30916:9;30912:17;30905:47;30969:131;31095:4;30969:131;:::i;:::-;30961:139;;30688:419;;;:::o;31113:191::-;31153:3;31172:20;31190:1;31172:20;:::i;:::-;31167:25;;31206:20;31224:1;31206:20;:::i;:::-;31201:25;;31249:1;31246;31242:9;31235:16;;31270:3;31267:1;31264:10;31261:36;;;31277:18;;:::i;:::-;31261:36;31113:191;;;;:::o;31310:180::-;31450:32;31446:1;31438:6;31434:14;31427:56;31310:180;:::o;31496:366::-;31638:3;31659:67;31723:2;31718:3;31659:67;:::i;:::-;31652:74;;31735:93;31824:3;31735:93;:::i;:::-;31853:2;31848:3;31844:12;31837:19;;31496:366;;;:::o;31868:419::-;32034:4;32072:2;32061:9;32057:18;32049:26;;32121:9;32115:4;32111:20;32107:1;32096:9;32092:17;32085:47;32149:131;32275:4;32149:131;:::i;:::-;32141:139;;31868:419;;;:::o;32293:168::-;32433:20;32429:1;32421:6;32417:14;32410:44;32293:168;:::o;32467:366::-;32609:3;32630:67;32694:2;32689:3;32630:67;:::i;:::-;32623:74;;32706:93;32795:3;32706:93;:::i;:::-;32824:2;32819:3;32815:12;32808:19;;32467:366;;;:::o;32839:419::-;33005:4;33043:2;33032:9;33028:18;33020:26;;33092:9;33086:4;33082:20;33078:1;33067:9;33063:17;33056:47;33120:131;33246:4;33120:131;:::i;:::-;33112:139;;32839:419;;;:::o;33264:163::-;33404:15;33400:1;33392:6;33388:14;33381:39;33264:163;:::o;33433:366::-;33575:3;33596:67;33660:2;33655:3;33596:67;:::i;:::-;33589:74;;33672:93;33761:3;33672:93;:::i;:::-;33790:2;33785:3;33781:12;33774:19;;33433:366;;;:::o;33805:419::-;33971:4;34009:2;33998:9;33994:18;33986:26;;34058:9;34052:4;34048:20;34044:1;34033:9;34029:17;34022:47;34086:131;34212:4;34086:131;:::i;:::-;34078:139;;33805:419;;;:::o;34230:221::-;34370:34;34366:1;34358:6;34354:14;34347:58;34439:4;34434:2;34426:6;34422:15;34415:29;34230:221;:::o;34457:366::-;34599:3;34620:67;34684:2;34679:3;34620:67;:::i;:::-;34613:74;;34696:93;34785:3;34696:93;:::i;:::-;34814:2;34809:3;34805:12;34798:19;;34457:366;;;:::o;34829:419::-;34995:4;35033:2;35022:9;35018:18;35010:26;;35082:9;35076:4;35072:20;35068:1;35057:9;35053:17;35046:47;35110:131;35236:4;35110:131;:::i;:::-;35102:139;;34829:419;;;:::o;35254:410::-;35294:7;35317:20;35335:1;35317:20;:::i;:::-;35312:25;;35351:20;35369:1;35351:20;:::i;:::-;35346:25;;35406:1;35403;35399:9;35428:30;35446:11;35428:30;:::i;:::-;35417:41;;35607:1;35598:7;35594:15;35591:1;35588:22;35568:1;35561:9;35541:83;35518:139;;35637:18;;:::i;:::-;35518:139;35302:362;35254:410;;;;:::o;35670:235::-;35810:34;35806:1;35798:6;35794:14;35787:58;35879:18;35874:2;35866:6;35862:15;35855:43;35670:235;:::o;35911:366::-;36053:3;36074:67;36138:2;36133:3;36074:67;:::i;:::-;36067:74;;36150:93;36239:3;36150:93;:::i;:::-;36268:2;36263:3;36259:12;36252:19;;35911:366;;;:::o;36283:419::-;36449:4;36487:2;36476:9;36472:18;36464:26;;36536:9;36530:4;36526:20;36522:1;36511:9;36507:17;36500:47;36564:131;36690:4;36564:131;:::i;:::-;36556:139;;36283:419;;;:::o;36708:224::-;36848:34;36844:1;36836:6;36832:14;36825:58;36917:7;36912:2;36904:6;36900:15;36893:32;36708:224;:::o;36938:366::-;37080:3;37101:67;37165:2;37160:3;37101:67;:::i;:::-;37094:74;;37177:93;37266:3;37177:93;:::i;:::-;37295:2;37290:3;37286:12;37279:19;;36938:366;;;:::o;37310:419::-;37476:4;37514:2;37503:9;37499:18;37491:26;;37563:9;37557:4;37553:20;37549:1;37538:9;37534:17;37527:47;37591:131;37717:4;37591:131;:::i;:::-;37583:139;;37310:419;;;:::o;37735:148::-;37837:11;37874:3;37859:18;;37735:148;;;;:::o;37889:390::-;37995:3;38023:39;38056:5;38023:39;:::i;:::-;38078:89;38160:6;38155:3;38078:89;:::i;:::-;38071:96;;38176:65;38234:6;38229:3;38222:4;38215:5;38211:16;38176:65;:::i;:::-;38266:6;38261:3;38257:16;38250:23;;37999:280;37889:390;;;;:::o;38285:435::-;38465:3;38487:95;38578:3;38569:6;38487:95;:::i;:::-;38480:102;;38599:95;38690:3;38681:6;38599:95;:::i;:::-;38592:102;;38711:3;38704:10;;38285:435;;;;;:::o;38726:225::-;38866:34;38862:1;38854:6;38850:14;38843:58;38935:8;38930:2;38922:6;38918:15;38911:33;38726:225;:::o;38957:366::-;39099:3;39120:67;39184:2;39179:3;39120:67;:::i;:::-;39113:74;;39196:93;39285:3;39196:93;:::i;:::-;39314:2;39309:3;39305:12;39298:19;;38957:366;;;:::o;39329:419::-;39495:4;39533:2;39522:9;39518:18;39510:26;;39582:9;39576:4;39572:20;39568:1;39557:9;39553:17;39546:47;39610:131;39736:4;39610:131;:::i;:::-;39602:139;;39329:419;;;:::o;39754:182::-;39894:34;39890:1;39882:6;39878:14;39871:58;39754:182;:::o;39942:366::-;40084:3;40105:67;40169:2;40164:3;40105:67;:::i;:::-;40098:74;;40181:93;40270:3;40181:93;:::i;:::-;40299:2;40294:3;40290:12;40283:19;;39942:366;;;:::o;40314:419::-;40480:4;40518:2;40507:9;40503:18;40495:26;;40567:9;40561:4;40557:20;40553:1;40542:9;40538:17;40531:47;40595:131;40721:4;40595:131;:::i;:::-;40587:139;;40314:419;;;:::o;40739:224::-;40879:34;40875:1;40867:6;40863:14;40856:58;40948:7;40943:2;40935:6;40931:15;40924:32;40739:224;:::o;40969:366::-;41111:3;41132:67;41196:2;41191:3;41132:67;:::i;:::-;41125:74;;41208:93;41297:3;41208:93;:::i;:::-;41326:2;41321:3;41317:12;41310:19;;40969:366;;;:::o;41341:419::-;41507:4;41545:2;41534:9;41530:18;41522:26;;41594:9;41588:4;41584:20;41580:1;41569:9;41565:17;41558:47;41622:131;41748:4;41622:131;:::i;:::-;41614:139;;41341:419;;;:::o;41766:223::-;41906:34;41902:1;41894:6;41890:14;41883:58;41975:6;41970:2;41962:6;41958:15;41951:31;41766:223;:::o;41995:366::-;42137:3;42158:67;42222:2;42217:3;42158:67;:::i;:::-;42151:74;;42234:93;42323:3;42234:93;:::i;:::-;42352:2;42347:3;42343:12;42336:19;;41995:366;;;:::o;42367:419::-;42533:4;42571:2;42560:9;42556:18;42548:26;;42620:9;42614:4;42610:20;42606:1;42595:9;42591:17;42584:47;42648:131;42774:4;42648:131;:::i;:::-;42640:139;;42367:419;;;:::o;42792:181::-;42932:33;42928:1;42920:6;42916:14;42909:57;42792:181;:::o;42979:366::-;43121:3;43142:67;43206:2;43201:3;43142:67;:::i;:::-;43135:74;;43218:93;43307:3;43218:93;:::i;:::-;43336:2;43331:3;43327:12;43320:19;;42979:366;;;:::o;43351:419::-;43517:4;43555:2;43544:9;43540:18;43532:26;;43604:9;43598:4;43594:20;43590:1;43579:9;43575:17;43568:47;43632:131;43758:4;43632:131;:::i;:::-;43624:139;;43351:419;;;:::o;43776:175::-;43916:27;43912:1;43904:6;43900:14;43893:51;43776:175;:::o;43957:366::-;44099:3;44120:67;44184:2;44179:3;44120:67;:::i;:::-;44113:74;;44196:93;44285:3;44196:93;:::i;:::-;44314:2;44309:3;44305:12;44298:19;;43957:366;;;:::o;44329:419::-;44495:4;44533:2;44522:9;44518:18;44510:26;;44582:9;44576:4;44572:20;44568:1;44557:9;44553:17;44546:47;44610:131;44736:4;44610:131;:::i;:::-;44602:139;;44329:419;;;:::o;44754:237::-;44894:34;44890:1;44882:6;44878:14;44871:58;44963:20;44958:2;44950:6;44946:15;44939:45;44754:237;:::o;44997:366::-;45139:3;45160:67;45224:2;45219:3;45160:67;:::i;:::-;45153:74;;45236:93;45325:3;45236:93;:::i;:::-;45354:2;45349:3;45345:12;45338:19;;44997:366;;;:::o;45369:419::-;45535:4;45573:2;45562:9;45558:18;45550:26;;45622:9;45616:4;45612:20;45608:1;45597:9;45593:17;45586:47;45650:131;45776:4;45650:131;:::i;:::-;45642:139;;45369:419;;;:::o;45794:180::-;45842:77;45839:1;45832:88;45939:4;45936:1;45929:15;45963:4;45960:1;45953:15;45980:240;46120:34;46116:1;46108:6;46104:14;46097:58;46189:23;46184:2;46176:6;46172:15;46165:48;45980:240;:::o;46226:366::-;46368:3;46389:67;46453:2;46448:3;46389:67;:::i;:::-;46382:74;;46465:93;46554:3;46465:93;:::i;:::-;46583:2;46578:3;46574:12;46567:19;;46226:366;;;:::o;46598:419::-;46764:4;46802:2;46791:9;46787:18;46779:26;;46851:9;46845:4;46841:20;46837:1;46826:9;46822:17;46815:47;46879:131;47005:4;46879:131;:::i;:::-;46871:139;;46598:419;;;:::o;47023:98::-;47074:6;47108:5;47102:12;47092:22;;47023:98;;;:::o;47127:168::-;47210:11;47244:6;47239:3;47232:19;47284:4;47279:3;47275:14;47260:29;;47127:168;;;;:::o;47301:373::-;47387:3;47415:38;47447:5;47415:38;:::i;:::-;47469:70;47532:6;47527:3;47469:70;:::i;:::-;47462:77;;47548:65;47606:6;47601:3;47594:4;47587:5;47583:16;47548:65;:::i;:::-;47638:29;47660:6;47638:29;:::i;:::-;47633:3;47629:39;47622:46;;47391:283;47301:373;;;;:::o;47680:640::-;47875:4;47913:3;47902:9;47898:19;47890:27;;47927:71;47995:1;47984:9;47980:17;47971:6;47927:71;:::i;:::-;48008:72;48076:2;48065:9;48061:18;48052:6;48008:72;:::i;:::-;48090;48158:2;48147:9;48143:18;48134:6;48090:72;:::i;:::-;48209:9;48203:4;48199:20;48194:2;48183:9;48179:18;48172:48;48237:76;48308:4;48299:6;48237:76;:::i;:::-;48229:84;;47680:640;;;;;;;:::o;48326:141::-;48382:5;48413:6;48407:13;48398:22;;48429:32;48455:5;48429:32;:::i;:::-;48326:141;;;;:::o;48473:349::-;48542:6;48591:2;48579:9;48570:7;48566:23;48562:32;48559:119;;;48597:79;;:::i;:::-;48559:119;48717:1;48742:63;48797:7;48788:6;48777:9;48773:22;48742:63;:::i;:::-;48732:73;;48688:127;48473:349;;;;:::o;48828:194::-;48868:4;48888:20;48906:1;48888:20;:::i;:::-;48883:25;;48922:20;48940:1;48922:20;:::i;:::-;48917:25;;48966:1;48963;48959:9;48951:17;;48990:1;48984:4;48981:11;48978:37;;;48995:18;;:::i;:::-;48978:37;48828:194;;;;:::o;49028:180::-;49076:77;49073:1;49066:88;49173:4;49170:1;49163:15;49197:4;49194:1;49187:15;49214:182;49354:34;49350:1;49342:6;49338:14;49331:58;49214:182;:::o;49402:366::-;49544:3;49565:67;49629:2;49624:3;49565:67;:::i;:::-;49558:74;;49641:93;49730:3;49641:93;:::i;:::-;49759:2;49754:3;49750:12;49743:19;;49402:366;;;:::o;49774:419::-;49940:4;49978:2;49967:9;49963:18;49955:26;;50027:9;50021:4;50017:20;50013:1;50002:9;49998:17;49991:47;50055:131;50181:4;50055:131;:::i;:::-;50047:139;;49774:419;;;:::o;50199:178::-;50339:30;50335:1;50327:6;50323:14;50316:54;50199:178;:::o;50383:366::-;50525:3;50546:67;50610:2;50605:3;50546:67;:::i;:::-;50539:74;;50622:93;50711:3;50622:93;:::i;:::-;50740:2;50735:3;50731:12;50724:19;;50383:366;;;:::o;50755:419::-;50921:4;50959:2;50948:9;50944:18;50936:26;;51008:9;51002:4;50998:20;50994:1;50983:9;50979:17;50972:47;51036:131;51162:4;51036:131;:::i;:::-;51028:139;;50755:419;;;:::o
Swarm Source
ipfs://bc2117c22ebe8d3388784fc3e6ea74dc3151ee78f6712e3a3bb1b39037ed29c0
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.