Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CF
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-25
*/
// File: @openzeppelin/contracts-ethereum-package/contracts/Initializable.sol
pragma solidity >=0.4.24 <0.7.0;
/**
* @title Initializable
*
* @dev Helper contract to support initializer functions. To use it, replace
* the constructor with a function that has the `initializer` modifier.
* WARNING: Unlike constructors, initializer functions must be manually
* invoked. This applies both to deploying an Initializable contract, as well
* as extending an Initializable contract via inheritance.
* WARNING: When used with inheritance, manual care must be taken to not invoke
* a parent initializer twice, or ensure that all initializers are idempotent,
* because this is not dealt with automatically as with constructors.
*/
contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private initializing;
/**
* @dev Modifier to use in the initializer function of a contract.
*/
modifier initializer() {
require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");
bool isTopLevelCall = !initializing;
if (isTopLevelCall) {
initializing = true;
initialized = true;
}
_;
if (isTopLevelCall) {
initializing = false;
}
}
/// @dev Returns true if and only if the function is running in the constructor
function isConstructor() private view returns (bool) {
// extcodesize checks the size of the code stored in an address, and
// address returns the current address. Since the code is still not
// deployed when running a constructor, any checks on its code size will
// yield zero, making it an effective way to detect if a contract is
// under construction or not.
address self = address(this);
uint256 cs;
assembly { cs := extcodesize(self) }
return cs == 0;
}
// Reserved storage space to allow for layout changes in the future.
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/GSN/Context.sol
pragma solidity ^0.6.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
contract ContextUpgradeSafe is Initializable {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
function __Context_init() internal initializer {
__Context_init_unchained();
}
function __Context_init_unchained() internal initializer {
}
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
uint256[50] private __gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol
pragma solidity ^0.6.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.
*/
contract OwnableUpgradeSafe is Initializable, ContextUpgradeSafe {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal initializer {
__Context_init_unchained();
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal initializer {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = 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");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
uint256[49] private __gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.6.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: @openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol
pragma solidity ^0.6.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts-ethereum-package/contracts/utils/Address.sol
pragma solidity ^0.6.2;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
}
// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.6.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20MinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20UpgradeSafe is Initializable, ContextUpgradeSafe, IERC20 {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
function __ERC20_init(string memory name, string memory symbol) internal initializer {
__Context_init_unchained();
__ERC20_init_unchained(name, symbol);
}
function __ERC20_init_unchained(string memory name, string memory symbol) internal initializer {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
uint256[44] private __gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Capped.sol
pragma solidity ^0.6.0;
/**
* @dev Extension of {ERC20} that adds a cap to the supply of tokens.
*/
abstract contract ERC20CappedUpgradeSafe is Initializable, ERC20UpgradeSafe {
uint256 private _cap;
/**
* @dev Sets the value of the `cap`. This value is immutable, it can only be
* set once during construction.
*/
function __ERC20Capped_init(uint256 cap) internal initializer {
__Context_init_unchained();
__ERC20Capped_init_unchained(cap);
}
function __ERC20Capped_init_unchained(uint256 cap) internal initializer {
require(cap > 0, "ERC20Capped: cap is 0");
_cap = cap;
}
/**
* @dev Returns the cap on the token's total supply.
*/
function cap() public view returns (uint256) {
return _cap;
}
/**
* @dev See {ERC20-_beforeTokenTransfer}.
*
* Requirements:
*
* - minted tokens must not cause the total supply to go over the cap.
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
if (from == address(0)) { // When minting tokens
require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded");
}
}
uint256[49] private __gap;
}
// File: contracts/IERC20VoteableUpgradeSafe.sol
pragma solidity 0.6.12;
interface IERC20VoteableUpgradeSafe {
function getPriorVotes(address account, uint256 blockNumber)
external
view
returns (uint256);
}
// File: contracts/ERC20VoteableUpgradeSafe.sol
pragma solidity 0.6.12;
abstract contract ERC20VoteableUpgradeSafe is
ERC20UpgradeSafe,
IERC20VoteableUpgradeSafe
{
struct Checkpoint {
uint256 fromBlock;
uint256 votes;
}
event DelegateChanged(
address indexed delegator,
address indexed fromDelegate,
address indexed toDelegate
);
event DelegateVotesChanged(
address indexed delegate,
uint256 previousBalance,
uint256 newBalance
);
bytes32 public constant DOMAIN_TYPEHASH = keccak256(
"EIP712Domain(string name,uint256 chainId,address verifyingContract)"
);
bytes32 public constant DELEGATION_TYPEHASH = keccak256(
"Delegation(address delegatee,uint256 nonce,uint256 expiry)"
);
bytes32 public constant PERMIT_TYPEHASH = keccak256(
"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
);
mapping(address => address) _delegates;
mapping(address => mapping(uint256 => Checkpoint)) public _checkpoints;
mapping(address => uint256) public _numCheckpoints;
mapping(address => uint256) public _nonces;
/**
* @notice Triggers an approval from owner to spends
* @param owner The address to approve from
* @param spender The address to be approved
* @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
* @param deadline The time at which to expire the signature
* @param v The recovery byte of the signature
* @param r Half of the ECDSA signature pair
* @param s Half of the ECDSA signature pair
*/
function permit(
address owner,
address spender,
uint256 rawAmount,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external {
uint256 amount;
bytes32 domainSeparator = keccak256(
abi.encode(
DOMAIN_TYPEHASH,
keccak256(bytes(name())),
_getChainId(),
address(this)
)
);
bytes32 structHash = keccak256(
abi.encode(
PERMIT_TYPEHASH,
owner,
spender,
rawAmount,
_nonces[owner]++,
deadline
)
);
bytes32 digest = keccak256(
abi.encodePacked("\x19\x01", domainSeparator, structHash)
);
address signatory = ecrecover(digest, v, r, s);
require(
signatory != address(0),
"ERC20VoteableUpgradeSafe: permit: invalid signature"
);
require(
signatory == owner,
"ERC20VoteableUpgradeSafe: permit: unauthorized"
);
require(
now <= deadline,
"ERC20VoteableUpgradeSafe: permit: signature expired"
);
_approve(owner, spender, amount);
emit Approval(owner, spender, amount);
}
/**
* @notice Delegate votes from `_msgSender()` to `delegatee`
* @param delegatee The address to delegate votes to
*/
function delegate(address delegatee) public {
return _delegate(_msgSender(), delegatee);
}
/**
* @notice Delegates votes from signatory to `delegatee`
* @param delegatee The address to delegate votes to
* @param nonce The contract state required to match the signature
* @param expiry The time at which to expire the signature
* @param v The recovery byte of the signature
* @param r Half of the ECDSA signature pair
* @param s Half of the ECDSA signature pair
*/
function delegateBySig(
address delegatee,
uint256 nonce,
uint256 expiry,
uint8 v,
bytes32 r,
bytes32 s
) public {
bytes32 domainSeparator = keccak256(
abi.encode(
DOMAIN_TYPEHASH,
keccak256(bytes(name())),
_getChainId(),
address(this)
)
);
bytes32 structHash = keccak256(
abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)
);
bytes32 digest = keccak256(
abi.encodePacked("\x19\x01", domainSeparator, structHash)
);
address signatory = ecrecover(digest, v, r, s);
require(
signatory != address(0),
"ERC20VoteableUpgradeSafe: delegateBySig: invalid signature"
);
require(
nonce == _nonces[signatory]++,
"ERC20VoteableUpgradeSafe: delegateBySig: invalid nonce"
);
require(
now <= expiry,
"ERC20VoteableUpgradeSafe: delegateBySig: signature expired"
);
return _delegate(signatory, delegatee);
}
/**
* @notice Gets the current votes balance for `account`
* @param account The address to get votes balance
* @return The number of current votes for `account`
*/
function getCurrentVotes(address account) external view returns (uint256) {
uint256 nCheckpoints = _numCheckpoints[account];
return
nCheckpoints > 0
? _checkpoints[account][nCheckpoints - 1].votes
: 0;
}
/**
* @notice Determine the prior number of votes for an account as of a block number
* @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
* @param account The address of the account to check
* @param blockNumber The block number to get the vote balance at
* @return The number of votes the account had as of the given block
*/
function getPriorVotes(address account, uint256 blockNumber)
public
override
view
returns (uint256)
{
require(
blockNumber < block.number,
"ERC20VoteableUpgradeSafe: getPriorVotes: not yet determined"
);
uint256 nCheckpoints = _numCheckpoints[account];
if (nCheckpoints == 0) {
return 0;
}
// First check most recent balance
if (_checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
return _checkpoints[account][nCheckpoints - 1].votes;
}
// Next check implicit zero balance
if (_checkpoints[account][0].fromBlock > blockNumber) {
return 0;
}
uint256 lower = 0;
uint256 upper = nCheckpoints - 1;
while (upper > lower) {
uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
Checkpoint memory cp = _checkpoints[account][center];
if (cp.fromBlock == blockNumber) {
return cp.votes;
} else if (cp.fromBlock < blockNumber) {
lower = center;
} else {
upper = center - 1;
}
}
return _checkpoints[account][lower].votes;
}
function _delegate(address delegator, address delegatee) internal {
address currentDelegate = _delegates[delegator];
uint256 delegatorBalance = balanceOf(delegator);
_delegates[delegator] = delegatee;
emit DelegateChanged(delegator, currentDelegate, delegatee);
_moveDelegates(currentDelegate, delegatee, delegatorBalance);
}
function _moveDelegates(
address srcRep,
address dstRep,
uint256 amount
) internal {
if (srcRep != dstRep && amount > 0) {
if (srcRep != address(0)) {
uint256 srcRepNum = _numCheckpoints[srcRep];
uint256 srcRepOld = srcRepNum > 0
? _checkpoints[srcRep][srcRepNum - 1].votes
: 0;
uint256 srcRepNew = srcRepOld.sub(amount);
_writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
}
if (dstRep != address(0)) {
uint256 dstRepNum = _numCheckpoints[dstRep];
uint256 dstRepOld = dstRepNum > 0
? _checkpoints[dstRep][dstRepNum - 1].votes
: 0;
uint256 dstRepNew = dstRepOld.add(amount);
_writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
}
}
}
function _writeCheckpoint(
address delegatee,
uint256 nCheckpoints,
uint256 oldVotes,
uint256 newVotes
) internal {
if (
nCheckpoints > 0 &&
_checkpoints[delegatee][nCheckpoints - 1].fromBlock == block.number
) {
_checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
} else {
_checkpoints[delegatee][nCheckpoints] = Checkpoint(
block.number,
newVotes
);
_numCheckpoints[delegatee] = nCheckpoints + 1;
}
emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
}
function _getChainId() internal pure returns (uint256) {
uint256 chainId;
assembly {
chainId := chainid()
}
return chainId;
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
_moveDelegates(_delegates[from], _delegates[to], amount);
}
}
// File: contracts/CF.sol
pragma solidity 0.6.12;
contract CF is
ERC20UpgradeSafe,
ERC20VoteableUpgradeSafe,
ERC20CappedUpgradeSafe,
OwnableUpgradeSafe
{
event AuthorizeMinter(address minter, address operator);
event RevokeMinter(address minter, address operator);
address[] public minters;
mapping(address => bool) public isMinter;
function initialize() public initializer {
__ERC20_init("Consensus Finance", "CF");
__ERC20Capped_init(1000_000e18);
__Ownable_init();
}
function mint(address to, uint256 amount) public {
require(isMinter[_msgSender()], "CF: caller is not an operator for CF");
_mint(to, amount);
}
function authorizeMinter(address minter) public onlyOwner {
for (uint256 i = 0; i < minters.length; i++) {
if (minters[i] == minter) revert("CF: minter exists");
}
minters.push(minter);
isMinter[minter] = true;
emit AuthorizeMinter(minter, _msgSender());
}
function revokeMinter(address minter) public onlyOwner {
bool has;
uint256 minterIndex;
for (uint256 i = 0; i < minters.length; i++) {
if (minters[i] == minter) {
has = true;
minterIndex = i;
break;
}
}
require(has, "CF: minter not found");
address lastMinter = minters[minters.length - 1];
if (lastMinter != minter) minters[minterIndex] = lastMinter;
minters.pop();
delete isMinter[minter];
emit RevokeMinter(minter, _msgSender());
}
function mintersLength() public view returns (uint256) {
return minters.length;
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
)
internal
override(
ERC20UpgradeSafe,
ERC20VoteableUpgradeSafe,
ERC20CappedUpgradeSafe
)
{
super._beforeTokenTransfer(from, to, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"operator","type":"address"}],"name":"AuthorizeMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"operator","type":"address"}],"name":"RevokeMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"_checkpoints","outputs":[{"internalType":"uint256","name":"fromBlock","type":"uint256"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_numCheckpoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"authorizeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintersLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"revokeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b506138a1806100206000396000f3fe608060405234801561001057600080fd5b506004361061020b5760003560e01c80638129fc1c1161012a578063b4b5ea57116100bd578063cfbd48851161008c578063dd62ed3e11610071578063dd62ed3e14610796578063e7a324dc146107d1578063f2fde38b146107d95761020b565b8063cfbd488514610705578063d505accf146107385761020b565b8063b4b5ea5714610643578063b9844d8d14610676578063c37bbabc146106a9578063c3cda520146106b15761020b565b80639d654e74116100f95780639d654e741461054c578063a457c2d71461059e578063a9059cbb146105d7578063aa271e1a146106105761020b565b80638129fc1c146104ee5780638623ec7b146104f65780638da5cb5b1461053c57806395d89b41146105445761020b565b8063355274ea116101a25780635c19a95c116101715780635c19a95c1461044757806370a082311461047a578063715018a6146104ad578063782d6fe1146104b55761020b565b8063355274ea1461039a57806339509351146103a257806340c10f19146103db57806351bc76cc146104145761020b565b806320606b70116101de57806320606b701461032957806323b872dd1461033157806330adf81f14610374578063313ce5671461037c5761020b565b806306fdde0314610210578063095ea7b31461028d5780630c984832146102da57806318160ddd1461030f575b600080fd5b61021861080c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025257818101518382015260200161023a565b50505050905090810190601f16801561027f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c6600480360360408110156102a357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108c0565b604080519115158252519081900360200190f35b61030d600480360360208110156102f057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166108de565b005b610317610b54565b60408051918252519081900360200190f35b610317610b5a565b6102c66004803603606081101561034757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610b7e565b610317610c1f565b610384610c43565b6040805160ff9092168252519081900360200190f35b610317610c4c565b6102c6600480360360408110156103b857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610c52565b61030d600480360360408110156103f157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610cad565b6103176004803603602081101561042a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d47565b61030d6004803603602081101561045d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d59565b6103176004803603602081101561049057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d6d565b61030d610d95565b610317600480360360408110156104cb57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610e95565b61030d611119565b6105136004803603602081101561050c57600080fd5b50356112bb565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6105136112ef565b61021861130b565b6105856004803603604081101561056257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561138a565b6040805192835260208301919091528051918290030190f35b6102c6600480360360408110156105b457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356113ae565b6102c6600480360360408110156105ed57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611423565b6102c66004803603602081101561062657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611437565b6103176004803603602081101561065957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661144d565b6103176004803603602081101561068c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166114dd565b6103176114ef565b61030d600480360360c08110156106c757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060208101359060408101359060ff6060820135169060808101359060a001356114f5565b61030d6004803603602081101561071b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611834565b61030d600480360360e081101561074e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611b82565b610317600480360360408110156107ac57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611f51565b610317611f89565b61030d600480360360208110156107ef57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611fad565b60688054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108d46108cd612138565b848461213c565b5060015b92915050565b6108e6612138565b60cd5473ffffffffffffffffffffffffffffffffffffffff90811691161461096f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60005b60ff54811015610a37578173ffffffffffffffffffffffffffffffffffffffff1660ff82815481106109a057fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff161415610a2f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f43463a206d696e74657220657869737473000000000000000000000000000000604482015290519081900360640190fd5b600101610972565b5060ff805460018082019092557fe08ec2af2cfc251225e1968fd6ca21e4044f129bffa95bac3503be8bdb30a3670180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915560009081526101006020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790557f6f6b78205996d815c1a4ece406cead90e65e1bb02d4abed06ddd578519ce747481610b09612138565b604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a150565b60675490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610b8b848484612283565b610c1584610b97612138565b610c10856040518060600160405280602881526020016137386028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260666020526040812090610be2612138565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190612455565b61213c565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b606a5460ff1690565b609b5490565b60006108d4610c5f612138565b84610c108560666000610c70612138565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490612506565b6101006000610cba612138565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205460ff16610d39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806136d96024913960400191505060405180910390fd5b610d43828261257a565b5050565b60996020526000908152604090205481565b610d6a610d64612138565b826126ad565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526065602052604090205490565b610d9d612138565b60cd5473ffffffffffffffffffffffffffffffffffffffff908116911614610e2657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60cd5460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360cd80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6000438210610eef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001806136fd603b913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526099602052604090205480610f245760009150506108d8565b73ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850184529091529020548310610fda5773ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9094018352929052206001015490506108d8565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260986020908152604080832083805290915290205483101561101c5760009150506108d8565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b818111156110dc57600282820304810361105a6134cc565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260986020908152604080832084845282529182902082518084019093528054808452600190910154918301919091528714156110bd576020015194506108d89350505050565b80518711156110ce578193506110d5565b6001820392505b5050611042565b5073ffffffffffffffffffffffffffffffffffffffff85166000908152609860209081526040808320938352929052206001015491505092915050565b600054610100900460ff16806111325750611132612774565b80611140575060005460ff16155b611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff161580156111fb57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61126f6040518060400160405280601181526020017f436f6e73656e7375732046696e616e63650000000000000000000000000000008152506040518060400160405280600281526020017f434600000000000000000000000000000000000000000000000000000000000081525061277a565b61128269d3c21bcecceda10000006128a2565b61128a6129c7565b8015610d6a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b60ff81815481106112c857fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60cd5473ffffffffffffffffffffffffffffffffffffffff1690565b60698054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b60986020908152600092835260408084209091529082529020805460019091015482565b60006108d46113bb612138565b84610c108560405180606001604052806025815260200161380d60259139606660006113e5612138565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612455565b60006108d4611430612138565b8484612283565b6101006020526000908152604090205460ff1681565b73ffffffffffffffffffffffffffffffffffffffff81166000908152609960205260408120548061147f5760006114d6565b73ffffffffffffffffffffffffffffffffffffffff831660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850184529091529020600101545b9392505050565b609a6020526000908152604090205481565b60ff5490565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661152061080c565b8051906020012061152f612ab9565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c084015273ffffffffffffffffffffffffffffffffffffffff8b1660e084015261010083018a90526101208084018a905282518085039091018152610140840183528051908501207f19010000000000000000000000000000000000000000000000000000000000006101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a905261022286018990529351929650909492939092600192610242808401937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa1580156116a8573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613646603a913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152609a6020526040902080546001810190915589146117c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603681526020018061378e6036913960400191505060405180910390fd5b8742111561181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613832603a913960400191505060405180910390fd5b611827818b6126ad565b505050505b505050505050565b61183c612138565b60cd5473ffffffffffffffffffffffffffffffffffffffff9081169116146118c557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008060005b60ff54811015611935578373ffffffffffffffffffffffffffffffffffffffff1660ff82815481106118f957fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561192d5760019250809150611935565b6001016118cb565b50816119a257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f43463a206d696e746572206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b60ff8054600091907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81019081106119d657fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff908116915084168114611a5b578060ff8381548110611a1257fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60ff805480611a6657fe5b6000828152602080822083017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905590920190925573ffffffffffffffffffffffffffffffffffffffff8616825261010090526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f7a48f61ff1fb1619c85e3f97d24fb24018a12d4f45976c9fb606d43e1f4e432784611b34612138565b604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a150505050565b6000807f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866611bae61080c565b80519060200120611bbd612ab9565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a08301825280519084012073ffffffffffffffffffffffffffffffffffffffff8d81166000818152609a8752848120805460018082019092557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960c089015260e0880193909352928f1661010087015261012086018e90526101408601919091526101608086018d905284518087039091018152610180860185528051908701207f19010000000000000000000000000000000000000000000000000000000000006101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8d1661022288015261024287018c905261026287018b905294519397509593949093919261028280830193927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa158015611d5f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611df6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806135e56033913960400191505060405180910390fd5b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613618602e913960400191505060405180910390fd5b88421115611ed3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806136a66033913960400191505060405180910390fd5b611ede8c8c8761213c565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040518082815260200191505060405180910390a3505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260666020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b611fb5612138565b60cd5473ffffffffffffffffffffffffffffffffffffffff90811691161461203e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166120aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061359d6026913960400191505060405180910390fd5b60cd5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360cd80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166121a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137e96024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612214576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135c36022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260666020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806137c46025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061357a6023913960400191505060405180910390fd5b612366838383612abd565b6123b0816040518060600160405280602681526020016136806026913973ffffffffffffffffffffffffffffffffffffffff86166000908152606560205260409020549190612455565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526065602052604080822093909355908416815220546123ec9082612506565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526065602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124c35781810151838201526020016124ab565b50505050905090810190601f1680156124f05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156114d657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff82166125fc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61260860008383612abd565b6067546126159082612506565b60675573ffffffffffffffffffffffffffffffffffffffff82166000908152606560205260409020546126489082612506565b73ffffffffffffffffffffffffffffffffffffffff831660008181526065602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260976020526040812054909116906126e184610d6d565b73ffffffffffffffffffffffffffffffffffffffff85811660008181526097602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461276e828483612ac8565b50505050565b303b1590565b600054610100900460ff16806127935750612793612774565b806127a1575060005460ff16155b6127f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff1615801561285c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b612864612c91565b61286e8383612da3565b801561289d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b505050565b600054610100900460ff16806128bb57506128bb612774565b806128c9575060005460ff16155b61291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff1615801561298457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61298c612c91565b61299582612f0b565b8015610d4357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b600054610100900460ff16806129e057506129e0612774565b806129ee575060005460ff16155b612a43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff16158015612aa957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b612ab1612c91565b61128a613093565b4690565b61289d838383613223565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b045750600081115b1561289d5773ffffffffffffffffffffffffffffffffffffffff831615612bcf5773ffffffffffffffffffffffffffffffffffffffff83166000908152609960205260408120549081612b58576000612baf565b73ffffffffffffffffffffffffffffffffffffffff851660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860184529091529020600101545b90506000612bbd82856132cb565b9050612bcb8684848461330d565b5050505b73ffffffffffffffffffffffffffffffffffffffff82161561289d5773ffffffffffffffffffffffffffffffffffffffff82166000908152609960205260408120549081612c1e576000612c75565b73ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860184529091529020600101545b90506000612c838285612506565b905061182c8584848461330d565b600054610100900460ff1680612caa5750612caa612774565b80612cb8575060005460ff16155b612d0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff1615801561128a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790558015610d6a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680612dbc5750612dbc612774565b80612dca575060005460ff16155b612e1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff16158015612e8557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b8251612e989060689060208601906134e6565b508151612eac9060699060208501906134e6565b50606a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166012179055801561289d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b600054610100900460ff1680612f245750612f24612774565b80612f32575060005460ff16155b612f87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff16158015612fed57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b6000821161305c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b609b8290558015610d4357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b600054610100900460ff16806130ac57506130ac612774565b806130ba575060005460ff16155b61310f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff1615801561317557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b600061317f612138565b60cd80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015610d6a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b61322e838383613482565b73ffffffffffffffffffffffffffffffffffffffff831661289d57609b5461325e82613258610b54565b90612506565b111561289d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b60006114d683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612455565b60008311801561336e575073ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8701845290915290205443145b156133d05773ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87018452909152902060010181905561342c565b604080518082018252438152602080820184815273ffffffffffffffffffffffffffffffffffffffff88166000818152609884528581208982528452858120945185559151600194850155815260999091529190912090840190555b6040805183815260208101839052815173ffffffffffffffffffffffffffffffffffffffff8716927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a250505050565b61348d83838361289d565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526097602052604080822054858416835291205461289d92918216911683612ac8565b604051806040016040528060008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061352757805160ff1916838001178555613554565b82800160010185558215613554579182015b82811115613554578251825591602001919060010190613539565b50613560929150613564565b5090565b5b80821115613560576000815560010161356556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734552433230566f746561626c6555706772616465536166653a207065726d69743a20696e76616c6964207369676e61747572654552433230566f746561626c6555706772616465536166653a207065726d69743a20756e617574686f72697a65644552433230566f746561626c6555706772616465536166653a2064656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654552433230566f746561626c6555706772616465536166653a207065726d69743a207369676e6174757265206578706972656443463a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f722043464552433230566f746561626c6555706772616465536166653a206765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65644552433230566f746561626c6555706772616465536166653a2064656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4552433230566f746561626c6555706772616465536166653a2064656c656761746542795369673a207369676e61747572652065787069726564a2646970667358221220ac184c83d52db680de47c5384577a978474f2b4919a1bf2fda47db0abb6cb88964736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061020b5760003560e01c80638129fc1c1161012a578063b4b5ea57116100bd578063cfbd48851161008c578063dd62ed3e11610071578063dd62ed3e14610796578063e7a324dc146107d1578063f2fde38b146107d95761020b565b8063cfbd488514610705578063d505accf146107385761020b565b8063b4b5ea5714610643578063b9844d8d14610676578063c37bbabc146106a9578063c3cda520146106b15761020b565b80639d654e74116100f95780639d654e741461054c578063a457c2d71461059e578063a9059cbb146105d7578063aa271e1a146106105761020b565b80638129fc1c146104ee5780638623ec7b146104f65780638da5cb5b1461053c57806395d89b41146105445761020b565b8063355274ea116101a25780635c19a95c116101715780635c19a95c1461044757806370a082311461047a578063715018a6146104ad578063782d6fe1146104b55761020b565b8063355274ea1461039a57806339509351146103a257806340c10f19146103db57806351bc76cc146104145761020b565b806320606b70116101de57806320606b701461032957806323b872dd1461033157806330adf81f14610374578063313ce5671461037c5761020b565b806306fdde0314610210578063095ea7b31461028d5780630c984832146102da57806318160ddd1461030f575b600080fd5b61021861080c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025257818101518382015260200161023a565b50505050905090810190601f16801561027f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c6600480360360408110156102a357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108c0565b604080519115158252519081900360200190f35b61030d600480360360208110156102f057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166108de565b005b610317610b54565b60408051918252519081900360200190f35b610317610b5a565b6102c66004803603606081101561034757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610b7e565b610317610c1f565b610384610c43565b6040805160ff9092168252519081900360200190f35b610317610c4c565b6102c6600480360360408110156103b857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610c52565b61030d600480360360408110156103f157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610cad565b6103176004803603602081101561042a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d47565b61030d6004803603602081101561045d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d59565b6103176004803603602081101561049057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d6d565b61030d610d95565b610317600480360360408110156104cb57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610e95565b61030d611119565b6105136004803603602081101561050c57600080fd5b50356112bb565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6105136112ef565b61021861130b565b6105856004803603604081101561056257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561138a565b6040805192835260208301919091528051918290030190f35b6102c6600480360360408110156105b457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356113ae565b6102c6600480360360408110156105ed57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611423565b6102c66004803603602081101561062657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611437565b6103176004803603602081101561065957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661144d565b6103176004803603602081101561068c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166114dd565b6103176114ef565b61030d600480360360c08110156106c757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060208101359060408101359060ff6060820135169060808101359060a001356114f5565b61030d6004803603602081101561071b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611834565b61030d600480360360e081101561074e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611b82565b610317600480360360408110156107ac57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611f51565b610317611f89565b61030d600480360360208110156107ef57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611fad565b60688054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108d46108cd612138565b848461213c565b5060015b92915050565b6108e6612138565b60cd5473ffffffffffffffffffffffffffffffffffffffff90811691161461096f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60005b60ff54811015610a37578173ffffffffffffffffffffffffffffffffffffffff1660ff82815481106109a057fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff161415610a2f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f43463a206d696e74657220657869737473000000000000000000000000000000604482015290519081900360640190fd5b600101610972565b5060ff805460018082019092557fe08ec2af2cfc251225e1968fd6ca21e4044f129bffa95bac3503be8bdb30a3670180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915560009081526101006020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790557f6f6b78205996d815c1a4ece406cead90e65e1bb02d4abed06ddd578519ce747481610b09612138565b604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a150565b60675490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610b8b848484612283565b610c1584610b97612138565b610c10856040518060600160405280602881526020016137386028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260666020526040812090610be2612138565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190612455565b61213c565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b606a5460ff1690565b609b5490565b60006108d4610c5f612138565b84610c108560666000610c70612138565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490612506565b6101006000610cba612138565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205460ff16610d39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806136d96024913960400191505060405180910390fd5b610d43828261257a565b5050565b60996020526000908152604090205481565b610d6a610d64612138565b826126ad565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526065602052604090205490565b610d9d612138565b60cd5473ffffffffffffffffffffffffffffffffffffffff908116911614610e2657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60cd5460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360cd80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6000438210610eef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001806136fd603b913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526099602052604090205480610f245760009150506108d8565b73ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850184529091529020548310610fda5773ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9094018352929052206001015490506108d8565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260986020908152604080832083805290915290205483101561101c5760009150506108d8565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b818111156110dc57600282820304810361105a6134cc565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260986020908152604080832084845282529182902082518084019093528054808452600190910154918301919091528714156110bd576020015194506108d89350505050565b80518711156110ce578193506110d5565b6001820392505b5050611042565b5073ffffffffffffffffffffffffffffffffffffffff85166000908152609860209081526040808320938352929052206001015491505092915050565b600054610100900460ff16806111325750611132612774565b80611140575060005460ff16155b611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff161580156111fb57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61126f6040518060400160405280601181526020017f436f6e73656e7375732046696e616e63650000000000000000000000000000008152506040518060400160405280600281526020017f434600000000000000000000000000000000000000000000000000000000000081525061277a565b61128269d3c21bcecceda10000006128a2565b61128a6129c7565b8015610d6a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b60ff81815481106112c857fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60cd5473ffffffffffffffffffffffffffffffffffffffff1690565b60698054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b60986020908152600092835260408084209091529082529020805460019091015482565b60006108d46113bb612138565b84610c108560405180606001604052806025815260200161380d60259139606660006113e5612138565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612455565b60006108d4611430612138565b8484612283565b6101006020526000908152604090205460ff1681565b73ffffffffffffffffffffffffffffffffffffffff81166000908152609960205260408120548061147f5760006114d6565b73ffffffffffffffffffffffffffffffffffffffff831660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850184529091529020600101545b9392505050565b609a6020526000908152604090205481565b60ff5490565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661152061080c565b8051906020012061152f612ab9565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c084015273ffffffffffffffffffffffffffffffffffffffff8b1660e084015261010083018a90526101208084018a905282518085039091018152610140840183528051908501207f19010000000000000000000000000000000000000000000000000000000000006101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a905261022286018990529351929650909492939092600192610242808401937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa1580156116a8573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613646603a913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152609a6020526040902080546001810190915589146117c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603681526020018061378e6036913960400191505060405180910390fd5b8742111561181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613832603a913960400191505060405180910390fd5b611827818b6126ad565b505050505b505050505050565b61183c612138565b60cd5473ffffffffffffffffffffffffffffffffffffffff9081169116146118c557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008060005b60ff54811015611935578373ffffffffffffffffffffffffffffffffffffffff1660ff82815481106118f957fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561192d5760019250809150611935565b6001016118cb565b50816119a257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f43463a206d696e746572206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b60ff8054600091907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81019081106119d657fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff908116915084168114611a5b578060ff8381548110611a1257fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60ff805480611a6657fe5b6000828152602080822083017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905590920190925573ffffffffffffffffffffffffffffffffffffffff8616825261010090526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f7a48f61ff1fb1619c85e3f97d24fb24018a12d4f45976c9fb606d43e1f4e432784611b34612138565b604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a150505050565b6000807f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866611bae61080c565b80519060200120611bbd612ab9565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a08301825280519084012073ffffffffffffffffffffffffffffffffffffffff8d81166000818152609a8752848120805460018082019092557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960c089015260e0880193909352928f1661010087015261012086018e90526101408601919091526101608086018d905284518087039091018152610180860185528051908701207f19010000000000000000000000000000000000000000000000000000000000006101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8d1661022288015261024287018c905261026287018b905294519397509593949093919261028280830193927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa158015611d5f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611df6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806135e56033913960400191505060405180910390fd5b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613618602e913960400191505060405180910390fd5b88421115611ed3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806136a66033913960400191505060405180910390fd5b611ede8c8c8761213c565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040518082815260200191505060405180910390a3505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260666020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b611fb5612138565b60cd5473ffffffffffffffffffffffffffffffffffffffff90811691161461203e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166120aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061359d6026913960400191505060405180910390fd5b60cd5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360cd80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166121a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137e96024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612214576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135c36022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260666020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806137c46025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061357a6023913960400191505060405180910390fd5b612366838383612abd565b6123b0816040518060600160405280602681526020016136806026913973ffffffffffffffffffffffffffffffffffffffff86166000908152606560205260409020549190612455565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526065602052604080822093909355908416815220546123ec9082612506565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526065602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124c35781810151838201526020016124ab565b50505050905090810190601f1680156124f05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156114d657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff82166125fc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61260860008383612abd565b6067546126159082612506565b60675573ffffffffffffffffffffffffffffffffffffffff82166000908152606560205260409020546126489082612506565b73ffffffffffffffffffffffffffffffffffffffff831660008181526065602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260976020526040812054909116906126e184610d6d565b73ffffffffffffffffffffffffffffffffffffffff85811660008181526097602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461276e828483612ac8565b50505050565b303b1590565b600054610100900460ff16806127935750612793612774565b806127a1575060005460ff16155b6127f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff1615801561285c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b612864612c91565b61286e8383612da3565b801561289d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b505050565b600054610100900460ff16806128bb57506128bb612774565b806128c9575060005460ff16155b61291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff1615801561298457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61298c612c91565b61299582612f0b565b8015610d4357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b600054610100900460ff16806129e057506129e0612774565b806129ee575060005460ff16155b612a43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff16158015612aa957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b612ab1612c91565b61128a613093565b4690565b61289d838383613223565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b045750600081115b1561289d5773ffffffffffffffffffffffffffffffffffffffff831615612bcf5773ffffffffffffffffffffffffffffffffffffffff83166000908152609960205260408120549081612b58576000612baf565b73ffffffffffffffffffffffffffffffffffffffff851660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860184529091529020600101545b90506000612bbd82856132cb565b9050612bcb8684848461330d565b5050505b73ffffffffffffffffffffffffffffffffffffffff82161561289d5773ffffffffffffffffffffffffffffffffffffffff82166000908152609960205260408120549081612c1e576000612c75565b73ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860184529091529020600101545b90506000612c838285612506565b905061182c8584848461330d565b600054610100900460ff1680612caa5750612caa612774565b80612cb8575060005460ff16155b612d0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff1615801561128a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790558015610d6a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680612dbc5750612dbc612774565b80612dca575060005460ff16155b612e1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff16158015612e8557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b8251612e989060689060208601906134e6565b508151612eac9060699060208501906134e6565b50606a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166012179055801561289d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b600054610100900460ff1680612f245750612f24612774565b80612f32575060005460ff16155b612f87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff16158015612fed57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b6000821161305c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b609b8290558015610d4357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b600054610100900460ff16806130ac57506130ac612774565b806130ba575060005460ff16155b61310f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613760602e913960400191505060405180910390fd5b600054610100900460ff1615801561317557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b600061317f612138565b60cd80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015610d6a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b61322e838383613482565b73ffffffffffffffffffffffffffffffffffffffff831661289d57609b5461325e82613258610b54565b90612506565b111561289d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b60006114d683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612455565b60008311801561336e575073ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8701845290915290205443145b156133d05773ffffffffffffffffffffffffffffffffffffffff841660009081526098602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87018452909152902060010181905561342c565b604080518082018252438152602080820184815273ffffffffffffffffffffffffffffffffffffffff88166000818152609884528581208982528452858120945185559151600194850155815260999091529190912090840190555b6040805183815260208101839052815173ffffffffffffffffffffffffffffffffffffffff8716927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a250505050565b61348d83838361289d565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526097602052604080822054858416835291205461289d92918216911683612ac8565b604051806040016040528060008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061352757805160ff1916838001178555613554565b82800160010185558215613554579182015b82811115613554578251825591602001919060010190613539565b50613560929150613564565b5090565b5b80821115613560576000815560010161356556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734552433230566f746561626c6555706772616465536166653a207065726d69743a20696e76616c6964207369676e61747572654552433230566f746561626c6555706772616465536166653a207065726d69743a20756e617574686f72697a65644552433230566f746561626c6555706772616465536166653a2064656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654552433230566f746561626c6555706772616465536166653a207065726d69743a207369676e6174757265206578706972656443463a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f722043464552433230566f746561626c6555706772616465536166653a206765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65644552433230566f746561626c6555706772616465536166653a2064656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4552433230566f746561626c6555706772616465536166653a2064656c656761746542795369673a207369676e61747572652065787069726564a2646970667358221220ac184c83d52db680de47c5384577a978474f2b4919a1bf2fda47db0abb6cb88964736f6c634300060c0033
Deployed Bytecode Sourcemap
39969:2059:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19579:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21685:169;;;;;;;;;;;;;;;;-1:-1:-1;21685:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40653:319;;;;;;;;;;;;;;;;-1:-1:-1;40653:319:0;;;;:::i;:::-;;20654:100;;;:::i;:::-;;;;;;;;;;;;;;;;30724:138;;;:::i;22328:321::-;;;;;;;;;;;;;;;;-1:-1:-1;22328:321:0;;;;;;;;;;;;;;;;;;:::i;31009:153::-;;;:::i;20506:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29289:75;;;:::i;23058:218::-;;;;;;;;;;;;;;;;-1:-1:-1;23058:218:0;;;;;;;;;:::i;40478:167::-;;;;;;;;;;;;;;;;-1:-1:-1;40478:167:0;;;;;;;;;:::i;31291:50::-;;;;;;;;;;;;;;;;-1:-1:-1;31291:50:0;;;;:::i;33420:104::-;;;;;;;;;;;;;;;;-1:-1:-1;33420:104:0;;;;:::i;20817:119::-;;;;;;;;;;;;;;;;-1:-1:-1;20817:119:0;;;;:::i;5533:148::-;;;:::i;36049:1339::-;;;;;;;;;;;;;;;;-1:-1:-1;36049:1339:0;;;;;;;;;:::i;40302:168::-;;;:::i;40222:24::-;;;;;;;;;;;;;;;;-1:-1:-1;40222:24:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;4891:79;;;:::i;19781:87::-;;;:::i;31214:70::-;;;;;;;;;;;;;;;;-1:-1:-1;31214:70:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23779:269;;;;;;;;;;;;;;;;-1:-1:-1;23779:269:0;;;;;;;;;:::i;21149:175::-;;;;;;;;;;;;;;;;-1:-1:-1;21149:175:0;;;;;;;;;:::i;40253:40::-;;;;;;;;;;;;;;;;-1:-1:-1;40253:40:0;;;;:::i;35345:273::-;;;;;;;;;;;;;;;;-1:-1:-1;35345:273:0;;;;:::i;31348:42::-;;;;;;;;;;;;;;;;-1:-1:-1;31348:42:0;;;;:::i;41594:95::-;;;:::i;33958:1186::-;;;;;;;;;;;;;;;;-1:-1:-1;33958:1186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;40980:606::-;;;;;;;;;;;;;;;;-1:-1:-1;40980:606:0;;;;:::i;31881:1389::-;;;;;;;;;;;;;;;;-1:-1:-1;31881:1389:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;21387:151::-;;;;;;;;;;;;;;;;-1:-1:-1;21387:151:0;;;;;;;;;;;:::i;30869:133::-;;;:::i;5836:244::-;;;;;;;;;;;;;;;;-1:-1:-1;5836:244:0;;;;:::i;19579:83::-;19649:5;19642:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19616:13;;19642:12;;19649:5;;19642:12;;19649:5;19642:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19579:83;:::o;21685:169::-;21768:4;21785:39;21794:12;:10;:12::i;:::-;21808:7;21817:6;21785:8;:39::i;:::-;-1:-1:-1;21842:4:0;21685:169;;;;;:::o;40653:319::-;5113:12;:10;:12::i;:::-;5103:6;;:22;:6;;;:22;;;5095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40727:9:::1;40722:125;40746:7;:14:::0;40742:18;::::1;40722:125;;;40800:6;40786:20;;:7;40794:1;40786:10;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;:20;40782:53;;;40808:27;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;40782:53;40762:3;;40722:125;;;-1:-1:-1::0;40857:7:0::1;:20:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;40888:16:0;;;40857:20:::1;;40888:16:::0;;;;:23;;;::::1;::::0;;::::1;::::0;;40927:37:::1;40857:20:::0;40951:12:::1;:10;:12::i;:::-;40927:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;40653:319:::0;:::o;20654:100::-;20734:12;;20654:100;:::o;30724:138::-;30766:96;30724:138;:::o;22328:321::-;22434:4;22451:36;22461:6;22469:9;22480:6;22451:9;:36::i;:::-;22498:121;22507:6;22515:12;:10;:12::i;:::-;22529:89;22567:6;22529:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;22549:12;:10;:12::i;:::-;22529:33;;;;;;;;;;;;;-1:-1:-1;22529:33:0;;;:89;:37;:89::i;:::-;22498:8;:121::i;:::-;-1:-1:-1;22637:4:0;22328:321;;;;;:::o;31009:153::-;31051:111;31009:153;:::o;20506:83::-;20572:9;;;;20506:83;:::o;29289:75::-;29352:4;;29289:75;:::o;23058:218::-;23146:4;23163:83;23172:12;:10;:12::i;:::-;23186:7;23195:50;23234:10;23195:11;:25;23207:12;:10;:12::i;:::-;23195:25;;;;;;;;;;;;;;;;;;-1:-1:-1;23195:25:0;;;:34;;;;;;;;;;;:38;:50::i;40478:167::-;40546:8;:22;40555:12;:10;:12::i;:::-;40546:22;;;;;;;;;;;;;-1:-1:-1;40546:22:0;;;;40538:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40620:17;40626:2;40630:6;40620:5;:17::i;:::-;40478:167;;:::o;31291:50::-;;;;;;;;;;;;;:::o;33420:104::-;33482:34;33492:12;:10;:12::i;:::-;33506:9;33482;:34::i;:::-;33420:104;:::o;20817:119::-;20910:18;;20883:7;20910:18;;;:9;:18;;;;;;;20817:119::o;5533:148::-;5113:12;:10;:12::i;:::-;5103:6;;:22;:6;;;:22;;;5095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5624:6:::1;::::0;5603:40:::1;::::0;5640:1:::1;::::0;5603:40:::1;5624:6;::::0;5603:40:::1;::::0;5640:1;;5603:40:::1;5654:6;:19:::0;;;::::1;::::0;;5533:148::o;36049:1339::-;36176:7;36237:12;36223:11;:26;36201:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36372:24;;;36349:20;36372:24;;;:15;:24;;;;;;36411:17;36407:58;;36452:1;36445:8;;;;;36407:58;36525:21;;;;;;;:12;:21;;;;;;;;36547:16;;;36525:39;;;;;;;:49;:64;-1:-1:-1;36521:149:0;;36613:21;;;;;;;:12;:21;;;;;;;;36635:16;;;;36613:39;;;;;;36650:1;36613:45;;;-1:-1:-1;36606:52:0;;36521:149;36731:21;;;;;;;:12;:21;;;;;;;;:24;;;;;;;;:34;:48;-1:-1:-1;36727:89:0;;;36803:1;36796:8;;;;;36727:89;36828:13;36872:16;;;36899:430;36914:5;36906;:13;36899:430;;;36979:1;36962:13;;;36961:19;36953:27;;37022:20;;:::i;:::-;-1:-1:-1;37045:21:0;;;;;;;:12;:21;;;;;;;;:29;;;;;;;;;37022:52;;;;;;;;;;;;;;;;;;;;;;;;;37093:27;;37089:229;;;37148:8;;;;-1:-1:-1;37141:15:0;;-1:-1:-1;;;;37141:15:0;37089:229;37182:12;;:26;-1:-1:-1;37178:140:0;;;37237:6;37229:14;;37178:140;;;37301:1;37292:6;:10;37284:18;;37178:140;36899:430;;;;;-1:-1:-1;37346:21:0;;;;;;;:12;:21;;;;;;;;:28;;;;;;;:34;;;;-1:-1:-1;;36049:1339:0;;;;:::o;40302:168::-;1136:12;;;;;;;;:31;;;1152:15;:13;:15::i;:::-;1136:47;;;-1:-1:-1;1172:11:0;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;1265:13;1285:83;;;;1314:12;:19;;1342:18;1314:19;;;;;;1342:18;1329:4;1342:18;;;1285:83;40354:39:::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;::::0;:12:::1;:39::i;:::-;40404:31;40423:11;40404:18;:31::i;:::-;40446:16;:14;:16::i;:::-;1390:14:::0;1386:57;;;1430:5;1415:20;;;;;;40302:168;:::o;40222:24::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40222:24:0;:::o;4891:79::-;4956:6;;;;4891:79;:::o;19781:87::-;19853:7;19846:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19820:13;;19846:14;;19853:7;;19846:14;;19853:7;19846:14;;;;;;;;;;;;;;;;;;;;;;;;31214:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23779:269::-;23872:4;23889:129;23898:12;:10;:12::i;:::-;23912:7;23921:96;23960:15;23921:96;;;;;;;;;;;;;;;;;:11;:25;23933:12;:10;:12::i;:::-;23921:25;;;;;;;;;;;;;;;;;;-1:-1:-1;23921:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;21149:175::-;21235:4;21252:42;21262:12;:10;:12::i;:::-;21276:9;21287:6;21252:9;:42::i;40253:40::-;;;;;;;;;;;;;;;:::o;35345:273::-;35453:24;;;35410:7;35453:24;;;:15;:24;;;;;;35508:16;:102;;35609:1;35508:102;;;35544:21;;;;;;;:12;:21;;;;;;;;35566:16;;;35544:39;;;;;;;35581:1;35544:45;;35508:102;35488:122;35345:273;-1:-1:-1;;;35345:273:0:o;31348:42::-;;;;;;;;;;;;;:::o;41594:95::-;41667:7;:14;41594:95;:::o;33958:1186::-;34141:23;30766:96;34270:6;:4;:6::i;:::-;34254:24;;;;;;34297:13;:11;:13::i;:::-;34191:166;;;;;;;;;;;;;;;;;;;;;;;;;34337:4;34191:166;;;;;;;;;;;;;;;;;;;;;;;34167:201;;;;;;30915:87;34424:57;;;;34191:166;34424:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34400:92;;;;;;34544:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34520:92;;;;;;;;;-1:-1:-1;34643:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34167:201;;-1:-1:-1;34400:92:0;;34520;;-1:-1:-1;;34643:26:0;;;;;;;-1:-1:-1;34643:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34643:26:0;;;;;;-1:-1:-1;;34702:23:0;;;34680:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34853:18;;;;;;;:7;:18;;;;;:20;;;;;;;;34844:29;;34822:133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34995:6;34988:3;:13;;34966:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35105:31;35115:9;35126;35105;:31::i;:::-;35098:38;;;;33958:1186;;;;;;;:::o;40980:606::-;5113:12;:10;:12::i;:::-;5103:6;;:22;:6;;;:22;;;5095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41046:8:::1;41065:19:::0;41100:9:::1;41095:200;41119:7;:14:::0;41115:18;::::1;41095:200;;;41173:6;41159:20;;:7;41167:1;41159:10;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;:20;41155:129;;;41206:4;41200:10;;41243:1;41229:15;;41263:5;;41155:129;41135:3;;41095:200;;;;41313:3;41305:36;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41373:7;41381:14:::0;;41352:18:::1;::::0;41373:7;41381:18;;;;41373:27;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;-1:-1:-1;41415:20:0;::::1;::::0;::::1;41411:59;;41460:10;41437:7;41445:11;41437:20;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;41411:59;41481:7;:13;;;;;;;;::::0;;;::::1;::::0;;;;;;;;;;;;::::1;::::0;;;;;;;;::::1;41512:16:::0;::::1;::::0;;41481:13:::1;41512:16:::0;;;;;41505:23;;;::::1;::::0;;41544:34:::1;41521:6:::0;41565:12:::1;:10;:12::i;:::-;41544:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;5173:1;;;40980:606:::0;:::o;31881:1389::-;32087:14;32112:23;30766:96;32241:6;:4;:6::i;:::-;32225:24;;;;;;32268:13;:11;:13::i;:::-;32162:166;;;;;;;;;;;;;;;;;;;;;;;;;32308:4;32162:166;;;;;;;;;;;;;;;;;;;;;;;32138:201;;;;;;32162:166;32536:14;;;-1:-1:-1;32536:14:0;;;:7;:14;;;;;:16;;;;;;;;;31051:111;32395:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32371:234;;;;;;32657:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32633:92;;;;;;;;;32756:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32138:201;;-1:-1:-1;32371:234:0;32633:92;;-1:-1:-1;;32536:16:0;;32756:26;;;;;32162:166;-1:-1:-1;32756:26:0;;;;;;;;;;;32536:16;32756:26;;;;;;;;;;;;;;;-1:-1:-1;;32756:26:0;;;;;;-1:-1:-1;;32815:23:0;;;32793:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32963:5;32950:18;;:9;:18;;;32928:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33082:8;33075:3;:15;;33053:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33182:32;33191:5;33198:7;33207:6;33182:8;:32::i;:::-;33246:7;33230:32;;33239:5;33230:32;;;33255:6;33230:32;;;;;;;;;;;;;;;;;;31881:1389;;;;;;;;;;;;:::o;21387:151::-;21503:18;;;;21476:7;21503:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21387:151::o;30869:133::-;30915:87;30869:133;:::o;5836:244::-;5113:12;:10;:12::i;:::-;5103:6;;:22;:6;;;:22;;;5095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5925:22:::1;::::0;::::1;5917:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6027:6;::::0;6006:38:::1;::::0;::::1;::::0;;::::1;::::0;6027:6:::1;::::0;6006:38:::1;::::0;6027:6:::1;::::0;6006:38:::1;6055:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;5836:244::o;3167:106::-;3255:10;3167:106;:::o;26926:346::-;27028:19;;;27020:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27107:21;;;27099:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27180:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27232:32;;;;;;;;;;;;;;;;;26926:346;;;:::o;24538:539::-;24644:20;;;24636:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24725:23;;;24717:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24801:47;24822:6;24830:9;24841:6;24801:20;:47::i;:::-;24881:71;24903:6;24881:71;;;;;;;;;;;;;;;;;:17;;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;24861:17;;;;;;;;:9;:17;;;;;;:91;;;;24986:20;;;;;;;:32;;25011:6;24986:24;:32::i;:::-;24963:20;;;;;;;;:9;:20;;;;;;;;;:55;;;;25034:35;;;;;;;24963:20;;25034:35;;;;;;;;;;;;;24538:539;;;:::o;10774:192::-;10860:7;10896:12;10888:6;;;;10880:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10932:5:0;;;10774:192::o;9887:181::-;9945:7;9977:5;;;10001:6;;;;9993:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25358:378;25442:21;;;25434:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25512:49;25541:1;25545:7;25554:6;25512:20;:49::i;:::-;25589:12;;:24;;25606:6;25589:16;:24::i;:::-;25574:12;:39;25645:18;;;;;;;:9;:18;;;;;;:30;;25668:6;25645:22;:30::i;:::-;25624:18;;;;;;;:9;:18;;;;;;;;:51;;;;25691:37;;;;;;;25624:18;;;;25691:37;;;;;;;;;;25358:378;;:::o;37396:379::-;37499:21;;;;37473:23;37499:21;;;:10;:21;;;;;;;;;;37558:20;37510:9;37558;:20::i;:::-;37589:21;;;;;;;;:10;:21;;;;;;:33;;;;;;;;;;;;;37640:54;;37531:47;;-1:-1:-1;37589:33:0;37640:54;;;;;;37589:21;37640:54;37707:60;37722:15;37739:9;37750:16;37707:14;:60::i;:::-;37396:379;;;;:::o;1537:508::-;1954:4;2000:17;2032:7;1537:508;:::o;19138:177::-;1136:12;;;;;;;;:31;;;1152:15;:13;:15::i;:::-;1136:47;;;-1:-1:-1;1172:11:0;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;1265:13;1285:83;;;;1314:12;:19;;1342:18;1314:19;;;;;;1342:18;1329:4;1342:18;;;1285:83;19234:26:::1;:24;:26::i;:::-;19271:36;19294:4;19300:6;19271:22;:36::i;:::-;1390:14:::0;1386:57;;;1430:5;1415:20;;;;;;1386:57;19138:177;;;:::o;28885:151::-;1136:12;;;;;;;;:31;;;1152:15;:13;:15::i;:::-;1136:47;;;-1:-1:-1;1172:11:0;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;1265:13;1285:83;;;;1314:12;:19;;1342:18;1314:19;;;;;;1342:18;1329:4;1342:18;;;1285:83;28958:26:::1;:24;:26::i;:::-;28995:33;29024:3;28995:28;:33::i;:::-;1390:14:::0;1386:57;;;1430:5;1415:20;;;;;;28885:151;;:::o;4469:129::-;1136:12;;;;;;;;:31;;;1152:15;:13;:15::i;:::-;1136:47;;;-1:-1:-1;1172:11:0;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;1265:13;1285:83;;;;1314:12;:19;;1342:18;1314:19;;;;;;1342:18;1329:4;1342:18;;;1285:83;4527:26:::1;:24;:26::i;:::-;4564;:24;:26::i;39447:179::-:0;39574:9;39447:179;:::o;41697:328::-;41973:44;42000:4;42006:2;42010:6;41973:26;:44::i;37783:975::-;37923:6;37913:16;;:6;:16;;;;:30;;;;;37942:1;37933:6;:10;37913:30;37909:842;;;37964:20;;;;37960:382;;38025:23;;;38005:17;38025:23;;;:15;:23;;;;;;;38087:13;:103;;38189:1;38087:103;;;38124:20;;;;;;;:12;:20;;;;;;;;38145:13;;;38124:35;;;;;;;38157:1;38124:41;;38087:103;38067:123;-1:-1:-1;38209:17:0;38229:21;38067:123;38243:6;38229:13;:21::i;:::-;38209:41;;38269:57;38286:6;38294:9;38305;38316;38269:16;:57::i;:::-;37960:382;;;;38362:20;;;;38358:382;;38423:23;;;38403:17;38423:23;;;:15;:23;;;;;;;38485:13;:103;;38587:1;38485:103;;;38522:20;;;;;;;:12;:20;;;;;;;;38543:13;;;38522:35;;;;;;;38555:1;38522:41;;38485:103;38465:123;-1:-1:-1;38607:17:0;38627:21;38465:123;38641:6;38627:13;:21::i;:::-;38607:41;;38667:57;38684:6;38692:9;38703;38714;38667:16;:57::i;3088:69::-;1136:12;;;;;;;;:31;;;1152:15;:13;:15::i;:::-;1136:47;;;-1:-1:-1;1172:11:0;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;1265:13;1285:83;;;;1314:12;:19;;1342:18;1314:19;;;;;;1342:18;1329:4;1342:18;;;1390:14;1386:57;;;1430:5;1415:20;;;;;;3088:69;:::o;19323:184::-;1136:12;;;;;;;;:31;;;1152:15;:13;:15::i;:::-;1136:47;;;-1:-1:-1;1172:11:0;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;1265:13;1285:83;;;;1314:12;:19;;1342:18;1314:19;;;;;;1342:18;1329:4;1342:18;;;1285:83;19433:12;;::::1;::::0;:5:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;19456:16:0;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;19483:9:0::1;:14:::0;;;::::1;19495:2;19483:14;::::0;;1386:57;;;;1430:5;1415:20;;;;;;19323:184;;;:::o;29044:159::-;1136:12;;;;;;;;:31;;;1152:15;:13;:15::i;:::-;1136:47;;;-1:-1:-1;1172:11:0;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;1265:13;1285:83;;;;1314:12;:19;;1342:18;1314:19;;;;;;1342:18;1329:4;1342:18;;;1285:83;29145:1:::1;29139:3;:7;29131:41;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29183:4;:10:::0;;;1386:57;;;;1430:5;1415:20;;;;;;29044:159;;:::o;4606:202::-;1136:12;;;;;;;;:31;;;1152:15;:13;:15::i;:::-;1136:47;;;-1:-1:-1;1172:11:0;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;1265:13;1285:83;;;;1314:12;:19;;1342:18;1314:19;;;;;;1342:18;1329:4;1342:18;;;1285:83;4678:17:::1;4698:12;:10;:12::i;:::-;4721:6;:18:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;4755:43:::1;::::0;4721:18;;-1:-1:-1;4721:18:0;-1:-1:-1;;4755:43:0::1;::::0;-1:-1:-1;;4755:43:0::1;1376:1;1390:14:::0;1386:57;;;1430:5;1415:20;;;;;;4606:202;:::o;29551:318::-;29660:44;29687:4;29693:2;29697:6;29660:26;:44::i;:::-;29721:18;;;29717:145;;29816:4;;29787:25;29805:6;29787:13;:11;:13::i;:::-;:17;;:25::i;:::-;:33;;29779:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10343:136;10401:7;10428:43;10432:1;10435;10428:43;;;;;;;;;;;;;;;;;:3;:43::i;38766:673::-;38965:1;38950:12;:16;:100;;;;-1:-1:-1;38983:23:0;;;;;;;:12;:23;;;;;;;;39007:16;;;38983:41;;;;;;;:51;39038:12;38983:67;38950:100;38932:431;;;39077:23;;;;;;;:12;:23;;;;;;;;39101:16;;;39077:41;;;;;;;39116:1;39077:47;:58;;;38932:431;;;39208:83;;;;;;;;39237:12;39208:83;;;;;;;;;39168:23;;;-1:-1:-1;39168:23:0;;;:12;:23;;;;;:37;;;;;;;;:123;;;;;;;;;;;39306:26;;:15;:26;;;;;;;39335:16;;;39306:45;;38932:431;39380:51;;;;;;;;;;;;;;;;;;;;;;;;;;38766:673;;;;:::o;39634:262::-;39777:44;39804:4;39810:2;39814:6;39777:26;:44::i;:::-;39847:16;;;;;;;;:10;:16;;;;;;;39865:14;;;;;;;;39832:56;;39847:16;;;;39865:14;39881:6;39832:14;:56::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;
Swarm Source
ipfs://ac184c83d52db680de47c5384577a978474f2b4919a1bf2fda47db0abb6cb889
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.